wmake/rules: Add -std=c++0x to formally enable support for of C++11 features

The c++0x is used rather than c++11 to support gcc-4.5.?
This commit is contained in:
Henry Weller
2016-01-10 19:17:31 +00:00
parent 33c99cc918
commit acb9ec8b46
13 changed files with 13 additions and 11 deletions

View File

@ -5,7 +5,7 @@ c++WARN = -Wall -Wextra -Wold-style-cast -Wnon-virtual-dtor -Wno-unused-para
# Suppress some warnings for flex++ and CGAL
c++LESSWARN =
CC = g++ -m64
CC = g++ -std=c++0x -m64
include $(RULES)/c++$(WM_COMPILE_OPTION)