about summary refs log tree commit diff
path: root/libdislocator
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-08-31 11:33:34 +0200
committerGitHub <noreply@github.com>2020-08-31 11:33:34 +0200
commita42b74b624d5ea916058c408e44f933e3f7ab86f (patch)
tree77d7b053e08db7c1950c44aa1243f0af9f427e65 /libdislocator
parent7ee255cbcf5a4bcf0e61b70024d9fa3259bc79e7 (diff)
parentc0fd7ba6d17cfeff69ff650018240a6c33946464 (diff)
downloadafl++-a42b74b624d5ea916058c408e44f933e3f7ab86f.tar.gz
Merge pull request #530 from rhertzog/add-cppflags
Pass CPPFLAGS to all calls of the C compiler
Diffstat (limited to 'libdislocator')
-rw-r--r--libdislocator/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/libdislocator/Makefile b/libdislocator/Makefile
index f9c4cb65..1c2fcaa7 100644
--- a/libdislocator/Makefile
+++ b/libdislocator/Makefile
@@ -28,7 +28,7 @@ all: libdislocator.so
 
 VPATH = ..
 libdislocator.so: libdislocator.so.c ../config.h
-	$(CC) $(CFLAGS) -shared -fPIC libdislocator.so.c -o ../$@ $(LDFLAGS)
+	$(CC) $(CFLAGS) $(CPPFLAGS) -shared -fPIC libdislocator.so.c -o ../$@ $(LDFLAGS)
 
 .NOTPARALLEL: clean