Skip to content
Snippets Groups Projects
Commit 6226e384 authored by Andrea Fioraldi's avatar Andrea Fioraldi
Browse files

beautified error log when -m32 is not available on unsigaction

parent 64435284
No related branches found
No related tags found
No related merge requests found
...@@ -18,7 +18,7 @@ ifndef AFL_NO_X86 ...@@ -18,7 +18,7 @@ ifndef AFL_NO_X86
all: lib_i386 lib_amd64 all: lib_i386 lib_amd64
lib_i386: lib_i386:
$(CC) -m32 -fPIC -shared unsigaction.c -o unsigaction32.so || echo "Cannot build unsigation32" @$(CC) -m32 -fPIC -shared unsigaction.c -o unsigaction32.so 2>/dev/null ; if [ "$$?" = "0" ]; then echo "unsigaction32 build success"; else echo "unsigaction32 build failure (that's fine)"; fi
lib_amd64: lib_amd64:
$(CC) -fPIC -shared unsigaction.c -o unsigaction64.so $(CC) -fPIC -shared unsigaction.c -o unsigaction64.so
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment