diff options
Diffstat (limited to '')
-rw-r--r-- | .travis.yml | 6 | ||||
-rw-r--r-- | bruiser/makefile | 7 |
2 files changed, 9 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 51214d0..a1cbc32 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,7 @@ matrix: description: "Build submitted via Travis CI" notification_email: thabogre@gmail.com build_command_prepend: "cov-configure --comptype clangcxx --compiler clang-5.0" - build_command: "make CXX=clang-5.0 LLVM_CONF=llvm-config-5.0 BUILD_MODE=COV_NO_CLANG" + build_command: "make CXX=clang-5.0 LLVM_CONF=llvm-config-5.0 BUILD_MODE=COV_NO_CLANG mutator-lvl0 safercpp" branch_pattern: master before_install: @@ -43,7 +43,9 @@ before_script: - python3-config --ldflags script: - - make CXX=clang-5.0 LLVM_CONF=llvm-config-5.0 BUILD_MODE=COV_NO_CLANG -j2 + - make CXX=clang-5.0 LLVM_CONF=llvm-config-5.0 BUILD_MODE=COV_NO_CLANG -j2 mutator-lvl0 safercpp + - cd bruiser && make + - cd ../daemon make after_failure: - find . -maxdepth 1 -name "core*" diff --git a/bruiser/makefile b/bruiser/makefile index d9d8871..a464371 100644 --- a/bruiser/makefile +++ b/bruiser/makefile @@ -3,7 +3,8 @@ include ../macros.mk #######################################VARS#################################### -CXX_FLAGS+=$(shell python3-config --includes) -I/usr/include +override CXX_FLAGS+:=-I/usr/include +override CXX_FLAGS+:=$(shell python3-config --includes) BRUISER=bruiser LUA?=JIT LIB_LUA=./lua-5.3.4/src/liblua.a @@ -29,7 +30,9 @@ depend: .bruiser.d -include ./.bruiser.d .cpp.o: depend - $(CXX) $(CXX_FLAGS) -c $< -o $@ + @echo 'fuck right off' + echo 'fuck right off' + $(CXX) $(CXX_FLAGS) -I/usr/include/python3.5m -c $< -o $@ linenoise.o: $(CC) $(CC_FLAGS) linenoise/linenoise.c -c -o linenoise.o |