Skip to content

Commit fae4fca

Browse files
authored
Update Makefile.include
Proposed changing c++0x standard to gnu++0x since some of the functions used in the code are only available with gnu++0x on some platforms (e.g. Windows).
1 parent 457bf9e commit fae4fca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefiles/Makefile.include

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ endif
5959

6060
CXX11_AVAIL ?= 1
6161

62-
CPP0X=$(shell if [ X$(CCVERSION) \> X4.3.0 ] ; then echo " -std=c++0x" ; fi)
62+
CPP0X=$(shell if [ X$(CCVERSION) \> X4.3.0 ] ; then echo " -std=gnu++0x" ; fi)
6363

6464
ifeq ($(CXX11_AVAIL), 0)
6565
CPP0X=

0 commit comments

Comments
 (0)