diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-04-21 20:46:33 -0700 |
---|---|---|
committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-04-21 20:46:33 -0700 |
commit | 250d020e9b121f537bbcbf8439033ba4a6f225ef (patch) | |
tree | 4ac7d52325a350bc4bbe7f0210e83fb7dcc843f0 /Makefile | |
parent | 8d4544f2e1f95ffbf83bc2233850fcafdf0195ea (diff) |
Use -std=c++0x instead of -std=c++11
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -35,7 +35,8 @@ ifneq ($(findstring PUGIXML_NO_EXCEPTIONS,$(defines)),) endif ifeq ($(findstring PUGIXML_NO_CXX11,$(defines)),) - CXXFLAGS+=-std=c++11 + # Can't use std=c++11 since Travis-CI has gcc 4.6.3 + CXXFLAGS+=-std=c++0x endif OBJECTS=$(SOURCES:%=$(BUILD)/%.o) |