]> mj.ucw.cz Git - eval.git/commitdiff
C++ flags
authorroot <root@mo113.(none)>
Thu, 7 Apr 2016 10:38:56 +0000 (12:38 +0200)
committerroot <root@mo113.(none)>
Thu, 7 Apr 2016 10:38:56 +0000 (12:38 +0200)
mop/project/templater/template-cpp.cbp
mop/public/compile

index 950aa6234ff6b3632eaa1b448a9fc1ca75931fba..51dd58f8b2af75a6ea679c5b5b42a5055f2cd07b 100644 (file)
@@ -31,7 +31,7 @@
                <Compiler>
                        <Add option="-Wall" />
                        <Add option="-Wextra" />
-                       <Add option="-std=gnu++0x" />
+                       <Add option="-std=gnu++11" />
                </Compiler>
                <Linker>
                        <Add option="-lm" />
index e95ac5f965a7d6dbc28097607de057382b354771..6aa55d5ba38794aac22f62a3cca3097e57b91bed 100755 (executable)
@@ -25,7 +25,7 @@ else
                c)
                        comm="gcc -static -DEVAL -O2 -std=gnu11 $cflags $src -o ${bin} -lm" ;;
                cpp)
-                       comm="g++ -static -DEVAL -O2 -std=gnu++0x $cflags $src -o ${bin}" ;;
+                       comm="g++ -static -DEVAL -O2 -std=gnu++11 $cflags $src -o ${bin}" ;;
                pas)
                        comm="fpc $cflags -XS -dEVAL -O2 -o${bin} $src";;
                *)