diff options
author | van Hauser <vh@thc.org> | 2022-04-25 09:09:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-25 09:09:18 +0200 |
commit | 5792d492ed3cfb4d027332def5d41d33fe696259 (patch) | |
tree | ddee447091036b8aa1d215bfe1db282c13dad237 | |
parent | 9ac3c53104d351d9ffa67b3f320bf0788aceb280 (diff) | |
parent | ee50f41d29ea67282e7bd2a2fc495c6e09922916 (diff) | |
download | afl++-5792d492ed3cfb4d027332def5d41d33fe696259.tar.gz |
Merge pull request #1375 from wtdcode/fix_uc_static
Fix unicornafl static build
-rw-r--r-- | unicorn_mode/UNICORNAFL_VERSION | 2 | ||||
-rw-r--r-- | unicorn_mode/samples/c/Makefile | 2 | ||||
-rw-r--r-- | unicorn_mode/samples/persistent/Makefile | 2 | ||||
m--------- | unicorn_mode/unicornafl | 0 |
4 files changed, 3 insertions, 3 deletions
diff --git a/unicorn_mode/UNICORNAFL_VERSION b/unicorn_mode/UNICORNAFL_VERSION index 77fc69b5..cda1d700 100644 --- a/unicorn_mode/UNICORNAFL_VERSION +++ b/unicorn_mode/UNICORNAFL_VERSION @@ -1 +1 @@ -c3e15a7d +09ad7d4784e50ec4ddf590a2c29764e2a7f37442 diff --git a/unicorn_mode/samples/c/Makefile b/unicorn_mode/samples/c/Makefile index fd6dbe77..c3ea5940 100644 --- a/unicorn_mode/samples/c/Makefile +++ b/unicorn_mode/samples/c/Makefile @@ -15,7 +15,7 @@ V ?= 0 CFLAGS += -Wall -Werror -I../../unicornafl/unicorn/include -I../../unicornafl/include -LDFLAGS += -L$(UNICORNAFL_LIB) -L$(UNICORN_LIB) -lpthread -lm -lunicornafl -lunicorn -lc++ +LDFLAGS += -L$(UNICORNAFL_LIB) -L$(UNICORN_LIB) -lunicorn -lunicornafl -lpthread -lm -lstdc++ ifeq ($(UNAME), Linux) # do something Linux-y diff --git a/unicorn_mode/samples/persistent/Makefile b/unicorn_mode/samples/persistent/Makefile index 35584416..a1dc9b26 100644 --- a/unicorn_mode/samples/persistent/Makefile +++ b/unicorn_mode/samples/persistent/Makefile @@ -15,7 +15,7 @@ V ?= 0 CFLAGS += -Wall -Werror -I../../unicornafl/unicorn/include -I../../unicornafl/include -LDFLAGS += -L$(UNICORNAFL_LIB) -L$(UNICORN_LIB) -lpthread -lm -lunicornafl -lunicorn -lc++ +LDFLAGS += -L$(UNICORNAFL_LIB) -L$(UNICORN_LIB) -lunicornafl -lunicorn -lpthread -lm -lstdc++ ifeq ($(UNAME), Linux) # do something Linux-y diff --git a/unicorn_mode/unicornafl b/unicorn_mode/unicornafl -Subproject c3e15a7d44101ff288abe114b7954ce6cfa070b +Subproject 09ad7d4784e50ec4ddf590a2c29764e2a7f3744 |