From: Doug Coleman Date: Fri, 5 Jun 2015 17:52:48 +0000 (-0700) Subject: Revert "GNUmakefile: Don't compile.gch with -std=c++11" X-Git-Tag: unmaintained~2681 X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=commitdiff_plain;h=64ccac3572d12a0c8e4350ddb6a8d15456754cb0 Revert "GNUmakefile: Don't compile.gch with -std=c++11" This wasn't the problem. This reverts commit e97e74b682aa1692fd72fe63f22b991176bb3e4e. --- diff --git a/GNUmakefile b/GNUmakefile index b9874f3666..951aa6849c 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -227,7 +227,7 @@ vm/ffi_test.o: vm/ffi_test.c $(TOOLCHAIN_PREFIX)$(CC) -c $(CFLAGS) $(FFI_TEST_CFLAGS) -o $@ $< vm/master.hpp.gch: vm/master.hpp $(MASTER_HEADERS) - $(TOOLCHAIN_PREFIX)$(CXX) -c -x c++-header $(CFLAGS) -o $@ $< + $(TOOLCHAIN_PREFIX)$(CXX) -c -x c++-header $(CFLAGS) $(CXXFLAGS) -o $@ $< %.o: %.cpp vm/master.hpp.gch $(TOOLCHAIN_PREFIX)$(CXX) -c $(CFLAGS) $(CXXFLAGS) -o $@ $<