diff options
author | bloodstalker <thabogre@gmail.com> | 2019-08-30 10:55:29 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2019-08-30 10:55:29 +0000 |
commit | f11aa701c6f0a39ee1d908ae1972ce85422bc2f3 (patch) | |
tree | 80401360a4bc6932232c65ffc08320f2d8a43311 /bruiser/makefile | |
parent | do not pull this commit [ci skip] (diff) | |
download | mutator-f11aa701c6f0a39ee1d908ae1972ce85422bc2f3.tar.gz mutator-f11aa701c6f0a39ee1d908ae1972ce85422bc2f3.zip |
updated the completion and hint for bruiser. its using a fork of linenoise now. i will add lua context-sensetive completions later.
Diffstat (limited to '')
-rw-r--r-- | bruiser/makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bruiser/makefile b/bruiser/makefile index 5665ec8..2e29fd1 100644 --- a/bruiser/makefile +++ b/bruiser/makefile @@ -14,13 +14,13 @@ SHELL=bash SHELL?=bash CC=clang CC?=clang -CC_FLAGS=-fpic -std=c11 $(shell $(PY_CONF) --includes) +CC_FLAGS=-fpic $(shell $(PY_CONF) --includes) CXX=clang++ CXX?=clang++ CXX_FLAGS=-fpic -I/usr/include $(shell $(PY_CONF) --includes) CXX_EXTRA?= CTAGS_I_PATH?=./ -LD_FLAGS= +LD_FLAGS=-v EXTRA_LD_FLAGS?= ADD_SANITIZERS_CC= -g -fsanitize=address -fno-omit-frame-pointer ADD_SANITIZERS_LD= -g -fsanitize=address |