diff options
| author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2021-01-29 18:52:45 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-29 18:52:45 +0100 |
| commit | b06e3d9f2b4a4cff5d5ba90b89ea3edaaca3ca12 (patch) | |
| tree | e644d51ded5c1b8b2d65635087129ada735d9ea0 /qemu_mode/unsigaction | |
| parent | debd832f36b142e1b0b1bab8a6966848a51878f8 (diff) | |
| parent | aaec45b6528e41a217de95ca3db1173fb2539672 (diff) | |
| download | afl++-b06e3d9f2b4a4cff5d5ba90b89ea3edaaca3ca12.tar.gz | |
Merge pull request #715 from AFLplusplus/qasan
Qasan
Diffstat (limited to 'qemu_mode/unsigaction')
| -rw-r--r-- | qemu_mode/unsigaction/Makefile | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/qemu_mode/unsigaction/Makefile b/qemu_mode/unsigaction/Makefile index 206a8f07..c5d2de31 100644 --- a/qemu_mode/unsigaction/Makefile +++ b/qemu_mode/unsigaction/Makefile @@ -16,19 +16,15 @@ _UNIQ=_QINU_ -TARGETCANDIDATES=unsigaction32.so unsigaction64.so +TARGETCANDIDATES=unsigaction.so _TARGETS=$(_UNIQ)$(AFL_NO_X86)$(_UNIQ) __TARGETS=$(_TARGETS:$(_UNIQ)1$(_UNIQ)=) TARGETS=$(__TARGETS:$(_UNIQ)$(_UNIQ)=$(TARGETCANDIDATES)) all: $(TARGETS) - @if [ "$(AFL_NO_X86)" != "" ]; then echo "[!] Note: skipping compilation of unsigaction (AFL_NO_X86 set)."; fi -unsigaction32.so: - @if $(CC) -m32 -fPIC -shared unsigaction.c -o unsigaction32.so 2>/dev/null ; then echo "unsigaction32 build success"; else echo "unsigaction32 build failure (that's fine)"; fi - -unsigaction64.so: - @if $(CC) -m64 -fPIC -shared unsigaction.c -o unsigaction64.so 2>/dev/null ; then echo "unsigaction64 build success"; else echo "unsigaction64 build failure (that's fine)"; fi +unsigaction.so: unsigaction.c + @if $(CC) -fPIC -shared unsigaction.c -o unsigaction.so 2>/dev/null ; then echo "unsigaction build success"; else echo "unsigaction build failure (that's fine)"; fi clean: - rm -f unsigaction32.so unsigaction64.so + rm -f unsigaction.so |
