mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-12 10:08:07 +00:00
small changes for ARM 32-bit (compiles now, but does not work)
This commit is contained in:
@ -53,6 +53,10 @@ ifeq "$(ARCH)" "aarch64"
|
|||||||
ARCH:=arm64
|
ARCH:=arm64
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq "$(ARCH)" "armv7l"
|
||||||
|
ARCH:=armhf
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq "$(ARCH)" "i686"
|
ifeq "$(ARCH)" "i686"
|
||||||
ARCH:=x86
|
ARCH:=x86
|
||||||
endif
|
endif
|
||||||
@ -83,8 +87,12 @@ ifeq "$(ARCH)" "arm64"
|
|||||||
# 15.0.0 Not released for aarch64 yet
|
# 15.0.0 Not released for aarch64 yet
|
||||||
GUM_DEVKIT_VERSION=14.2.18
|
GUM_DEVKIT_VERSION=14.2.18
|
||||||
else
|
else
|
||||||
|
ifeq "$(ARCH)" "armhf"
|
||||||
|
GUM_DEVKIT_VERSION=14.2.18
|
||||||
|
else
|
||||||
GUM_DEVKIT_VERSION=15.0.0
|
GUM_DEVKIT_VERSION=15.0.0
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
GUM_DEVKIT_FILENAME=frida-gumjs-devkit-$(GUM_DEVKIT_VERSION)-$(OS)-$(ARCH).tar.xz
|
GUM_DEVKIT_FILENAME=frida-gumjs-devkit-$(GUM_DEVKIT_VERSION)-$(OS)-$(ARCH).tar.xz
|
||||||
GUM_DEVKIT_URL="https://github.com/frida/frida/releases/download/$(GUM_DEVKIT_VERSION)/$(GUM_DEVKIT_FILENAME)"
|
GUM_DEVKIT_URL="https://github.com/frida/frida/releases/download/$(GUM_DEVKIT_VERSION)/$(GUM_DEVKIT_FILENAME)"
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
#if defined(__arm__)
|
#if defined(__arm__)
|
||||||
|
|
||||||
gsize ctx_read_reg(GumIA32CpuContext *ctx, x86_reg reg) {
|
gsize ctx_read_reg(GumArmCpuContext *ctx, arm_reg reg) {
|
||||||
|
|
||||||
FATAL("ctx_read_reg unimplemented for this architecture");
|
FATAL("ctx_read_reg unimplemented for this architecture");
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user