diff options
| author | bloodstalker <thabogre@gmail.com> | 2017-01-20 01:23:32 +0000 | 
|---|---|---|
| committer | bloodstalker <thabogre@gmail.com> | 2017-01-20 01:23:32 +0000 | 
| commit | a5388a8441eea038adb03dccec0a84e9e1f541f9 (patch) | |
| tree | 5083fa0e732b1a951d7edf14478d290fac7f6916 | |
| parent | updated 1/20/2017 (diff) | |
| download | mutator-a5388a8441eea038adb03dccec0a84e9e1f541f9.tar.gz mutator-a5388a8441eea038adb03dccec0a84e9e1f541f9.zip | |
started working on a windows build
| -rw-r--r-- | makefile | 7 | 
1 files changed, 7 insertions, 0 deletions
| @@ -40,6 +40,13 @@ EXTRA_CXX_FALGS=-I$(shell $(LLVM_CONF) --src-root)/tools/clang/include -I$(shell  EXTRA_LD_FLAGS=-v tinyxml2/tinyxml2.o  endif +ifeq ($(BUILD_MODE), WIN_BUILD) +$(error This build mode is not yet implemented.) +EXTRA_CXX_FALGS=-I$(shell $(LLVM_CONF) --src-root)/tools/clang/include -I$(shell $(LLVM_CONF) --obj-root)/tools/clang/include\ + -std=c++11 -stdlib=libstdc++ -UNDEBUG -fexceptions +EXTRA_LD_FLAGS=-v tinyxml2/tinyxml2.o +endif +  ifeq ($(BUILD_MODE), COV_NO_CLANG_1Z)  ifeq ($(CXX), g++)  $(error This build mode is only useable with clang++.) | 
