diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-06-22 02:24:16 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-06-22 02:24:16 +0300 |
commit | 319d525f993b0b95205df1cd431985ce575c4049 (patch) | |
tree | 781041b8a52c2d15b74eddc895fb471cc3413457 /build/pcmake | |
parent | 7e346ee2605d2dfad6cbd2b57705991bb38b0fa4 (diff) | |
download | plus-319d525f993b0b95205df1cd431985ce575c4049.tar.gz plus-319d525f993b0b95205df1cd431985ce575c4049.tar.bz2 plus-319d525f993b0b95205df1cd431985ce575c4049.tar.xz plus-319d525f993b0b95205df1cd431985ce575c4049.zip |
Enable C++11 support in windows builds.
Diffstat (limited to 'build/pcmake')
-rwxr-xr-x | build/pcmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/pcmake b/build/pcmake index 6f8db72d4..f457ffa61 100755 --- a/build/pcmake +++ b/build/pcmake @@ -3,7 +3,7 @@ cd .. export PATH=/home/mingw/cross/i686-w64-mingw32/bin:/home/mingw/cross/bin:$PATH -export CXXFLAGS="-Wall -g1 -O2 -pg -ffast-math" +export CXXFLAGS="-Wall -g1 -O2 -pg -ffast-math -std=gnu++0x" cmake -DCMAKE_TOOLCHAIN_FILE=build/toolchain.cmake . 2>build/make1.log make -j5 VERBOSE=1 2>>build/make.log |