diff options
author | hexcoder- <heiko@hexco.de> | 2021-05-04 21:32:03 +0200 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2021-05-04 21:32:03 +0200 |
commit | be493f0abae85f4a72da57a47e2bf0da9459249e (patch) | |
tree | 323b983b36bb3c284786bfa6979e9992e228c12a | |
parent | b35e6deb09c813fbcbd6d5faf84f5b3e395458d0 (diff) | |
download | afl++-be493f0abae85f4a72da57a47e2bf0da9459249e.tar.gz |
set ARCH for linux intel 32-bit for frida-gum-devkit
-rw-r--r-- | frida_mode/GNUmakefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/frida_mode/GNUmakefile b/frida_mode/GNUmakefile index 7284cf86..e95455e3 100644 --- a/frida_mode/GNUmakefile +++ b/frida_mode/GNUmakefile @@ -43,6 +43,10 @@ ifeq "$(ARCH)" "aarch64" ARCH:=arm64 endif +ifeq "$(ARCH)" "i686" + ARCH:=x86 +endif + ifeq "$(shell uname)" "Darwin" OS:=macos RT_CFLAGS:=$(RT_CFLAGS) -Wno-deprecated-declarations |