diff options
author | van Hauser <vh@thc.org> | 2022-04-03 09:30:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-03 09:30:23 +0200 |
commit | 881aef21fd6ca3f3bcf0847587d4d6d86f3a69db (patch) | |
tree | d076384dedf423a4bb7c3d1507cb07281ebc2865 /qemu_mode | |
parent | 1d4f1e48797c064ee71441ba555b29fc3f467983 (diff) | |
parent | c4363dd8b3d19a3e4bab8bc1fca1708ae2ff7899 (diff) | |
download | afl++-881aef21fd6ca3f3bcf0847587d4d6d86f3a69db.tar.gz |
Merge pull request #1362 from AFLplusplus/dev
push to stable
Diffstat (limited to 'qemu_mode')
-rw-r--r-- | qemu_mode/QEMUAFL_VERSION | 2 | ||||
m--------- | qemu_mode/qemuafl | 0 | ||||
-rw-r--r-- | qemu_mode/unsigaction/Makefile | 14 |
3 files changed, 8 insertions, 8 deletions
diff --git a/qemu_mode/QEMUAFL_VERSION b/qemu_mode/QEMUAFL_VERSION index 0c5c12d3..f39cb77e 100644 --- a/qemu_mode/QEMUAFL_VERSION +++ b/qemu_mode/QEMUAFL_VERSION @@ -1 +1 @@ -ce65a7349e +a120c3feb5 diff --git a/qemu_mode/qemuafl b/qemu_mode/qemuafl -Subproject ce65a7349e7156e052b37a660422cad8346764d +Subproject a120c3feb573d4cade292cdeb7c1f6b1ce109ef diff --git a/qemu_mode/unsigaction/Makefile b/qemu_mode/unsigaction/Makefile index eabe6c77..f026a2b7 100644 --- a/qemu_mode/unsigaction/Makefile +++ b/qemu_mode/unsigaction/Makefile @@ -12,19 +12,19 @@ # # http://www.apache.org/licenses/LICENSE-2.0 # -.POSIX: -_UNIQ=_QINU_ - -TARGETCANDIDATES=unsigaction.so -_TARGETS=$(_UNIQ)$(AFL_NO_X86)$(_UNIQ) -__TARGETS=$(_TARGETS:$(_UNIQ)1$(_UNIQ)=) -TARGETS=$(__TARGETS:$(_UNIQ)$(_UNIQ)=$(TARGETCANDIDATES)) +TARGETS=unsigaction.so unsigaction32.so unsigaction64.so all: $(TARGETS) 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 +unsigaction32.so: unsigaction.c + @if $(CC) -fPIC -m32 -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: unsigaction.c + @if $(CC) -fPIC -m64 -shared unsigaction.c -o unsigaction64.so 2>/dev/null ; then echo "unsigaction64 build success"; else echo "unsigaction64 build failure (that's fine)"; fi + clean: rm -f unsigaction.so |