aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2015-12-31 17:52:26 +0100
committerDmitry Vyukov <dvyukov@google.com>2015-12-31 17:52:26 +0100
commit33950d306aa9f1bfb0f8cf2e2254882b865e60b9 (patch)
tree5b0360c2054439ce9d428b2c99509aec4870658e /Makefile
parent96e9dbd87440c385476d5554dd1129c2a02b512e (diff)
executor: fix some bugs found by clang
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 497263557..e553d06ea 100644
--- a/Makefile
+++ b/Makefile
@@ -14,7 +14,7 @@ fuzzer:
go build -o ./bin/syz-fuzzer github.com/google/syzkaller/syz-fuzzer
executor:
- gcc -o ./bin/syz-executor executor/executor.cc -lpthread -static -Wall -O1 -g
+ $(CC) -o ./bin/syz-executor executor/executor.cc -lpthread -static -Wall -O1 -g $(CFLAGS)
execprog:
go build -o ./bin/syz-execprog github.com/google/syzkaller/tools/syz-execprog