From f4e0ce32b0fca85e76110a1303656e15960c6c26 Mon Sep 17 00:00:00 2001 From: Alex Lin Date: Wed, 29 Jul 2015 09:50:53 -0500 Subject: [PATCH] Can't compile ICG with --std=c++11 Removed the --std=c++11 flag. refs #94 --- trick_source/codegen/Interface_Code_Gen/makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trick_source/codegen/Interface_Code_Gen/makefile b/trick_source/codegen/Interface_Code_Gen/makefile index 62c4c164..68d0ebc3 100644 --- a/trick_source/codegen/Interface_Code_Gen/makefile +++ b/trick_source/codegen/Interface_Code_Gen/makefile @@ -4,7 +4,7 @@ include ${TRICK_HOME}/share/trick/makefiles/Makefile.common CC := $(shell $(LLVM_HOME)/bin/llvm-config --bindir)/clang CXX := $(shell $(LLVM_HOME)/bin/llvm-config --bindir)/clang++ -CXXFLAGS := -g -I$(shell $(LLVM_HOME)/bin/llvm-config --includedir) -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fno-rtti -std=c++11 +CXXFLAGS := -g -I$(shell $(LLVM_HOME)/bin/llvm-config --includedir) -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fno-rtti CLANG_MINOR_GTEQ5 := $(shell expr `$(LLVM_HOME)/bin/llvm-config --version | cut -f2 -d. ` \>= 5 )