diff options
| author | van Hauser <vh@thc.org> | 2020-07-21 13:15:59 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-21 13:15:59 +0200 |
| commit | b6e65f98827470745d7df5cf1e38b506b9e839b0 (patch) | |
| tree | 602abd8c1a1929aebda3f80665ffe02b435fdd00 /gcc_plugin/GNUmakefile | |
| parent | fc5cfc6cb309b072a45b991be117c17396e46a89 (diff) | |
| parent | c2b04bdf6c596f5d220f27caead20d09452ed42d (diff) | |
| download | afl++-b6e65f98827470745d7df5cf1e38b506b9e839b0.tar.gz | |
Merge pull request #461 from AFLplusplus/new_splicing
New splicing
Diffstat (limited to 'gcc_plugin/GNUmakefile')
| -rw-r--r-- | gcc_plugin/GNUmakefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gcc_plugin/GNUmakefile b/gcc_plugin/GNUmakefile index 60f04bb7..002437cb 100644 --- a/gcc_plugin/GNUmakefile +++ b/gcc_plugin/GNUmakefile @@ -70,9 +70,14 @@ ifeq "$(TEST_MMAP)" "1" endif ifneq "$(shell uname -s)" "Haiku" - LDFLAGS += -lrt + LDFLAGS += -lrt endif +ifeq "$(shell uname -s)" "SunOS" + PLUGIN_FLAGS += -I/usr/include/gmp +endif + + PROGS = ../afl-gcc-fast ../afl-gcc-pass.so ../afl-gcc-rt.o @@ -156,7 +161,7 @@ install: all install -m 755 ../afl-gcc-fast $${DESTDIR}$(BIN_PATH) install -m 755 ../afl-gcc-pass.so ../afl-gcc-rt.o $${DESTDIR}$(HELPER_PATH) install -m 644 -T README.md $${DESTDIR}$(DOC_PATH)/README.gcc_plugin.md - install -m 644 -T README.whitelist.md $${DESTDIR}$(DOC_PATH)/README.gcc_plugin.whitelist.md + install -m 644 -T README.instrument_file.md $${DESTDIR}$(DOC_PATH)/README.gcc_plugin.instrument_file.md clean: rm -f *.o *.so *~ a.out core core.[1-9][0-9]* test-instr .test-instr0 .test-instr1 .test2 |
