summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNicolas 'Pixel' Noble <pixel@nobis-crew.org>2013-01-20 00:05:52 -0800
committerNicolas 'Pixel' Noble <pixel@nobis-crew.org>2013-01-20 00:05:52 -0800
commitf999a15d51b12313f66d8b997870878b5eea10bc (patch)
tree8f775a802adbbe4d830c95ad7026161aa34a20c9 /Makefile
parentdb8e2f4a2a188c7bbfe0fee95417a987cc105b87 (diff)
Let's embrace C++11 fully - will now require gcc-4.7 or clang-3.x
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 42263b5..51d88f7 100644
--- a/Makefile
+++ b/Makefile
@@ -106,7 +106,7 @@ endif
CPPFLAGS_NO_ARCH += $(addprefix -I, $(INCLUDES)) -fexceptions -imacros $(CONFIG_H)
CPPFLAGS += $(CPPFLAGS_NO_ARCH) $(ARCH_FLAGS) $(addprefix -D, $(DEFINES))
-CXXFLAGS += -Wno-deprecated -std=gnu++0x
+CXXFLAGS += -Wno-deprecated -std=c++11
LDFLAGS += $(ARCH_FLAGS)
LDLIBS = $(addprefix -l, $(LIBS))