diff options
author | user1 <user1@ubuntu> | 2017-03-30 23:56:27 +0000 |
---|---|---|
committer | user1 <user1@ubuntu> | 2017-03-30 23:56:27 +0000 |
commit | 7baf464754738afff528bd79b741ddec59b8a06a (patch) | |
tree | 86cca037a44f6d7322b11c15f930888d5abdaa70 /safercpp | |
parent | some progress on auto-conversion of arrays (diff) | |
parent | added safercpp native array detection, now also detects use of pointers point... (diff) | |
download | mutator-7baf464754738afff528bd79b741ddec59b8a06a.tar.gz mutator-7baf464754738afff528bd79b741ddec59b8a06a.zip |
Merge branch 'master' of https://github.com/bloodstalker/mutator.git
Diffstat (limited to 'safercpp')
-rw-r--r-- | safercpp/makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/safercpp/makefile b/safercpp/makefile index cba8d9e..cd5a0b8 100644 --- a/safercpp/makefile +++ b/safercpp/makefile @@ -3,7 +3,12 @@ include ../macros.mk #######################################VARS#################################### +CXX_FLAGS+=-frtti SFCPP01=safercpp-arr + +ifeq ($(shell $(LLVM_CONF) --has-rtti), NO) +$(error your llvm-config says you dont have rtti. you cant build safercpparr without rtti support.) +endif ######################################RULES#################################### .DEFAULT: all |