Skip to content

Commit

Permalink
Enabled C++11 when compiling on Linux
Browse files Browse the repository at this point in the history
-These flags were missing, so OpenGL3.3 graphics system didn't work as
well as BasicGUI extension.
  • Loading branch information
TheExDeus committed Nov 17, 2015
1 parent 4eddce1 commit ad3c81a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Compilers/Linux/MinGW32.ey
Expand Up @@ -17,7 +17,7 @@ searchdirs-start: "#include <...> search starts here:"
searchdirs-end: "End of search list."
resources: $exe
cppflags:
cxxflags: -I../Additional/i686-w64-mingw32/include
cxxflags: -std=c++11 -m32 -I../Additional/i686-w64-mingw32/include
cflags:
ldflags:
links:
Expand Down
2 changes: 1 addition & 1 deletion Compilers/Linux/MinGW64.ey
Expand Up @@ -17,7 +17,7 @@ searchdirs-start: "#include <...> search starts here:"
searchdirs-end: "End of search list."
resources: $exe
cppflags:
cxxflags: -I../Additional/x86_64-w64-mingw32/include
cxxflags: -std=c++11 -I../Additional/x86_64-w64-mingw32/include
cflags:
ldflags:
links:
Expand Down
2 changes: 1 addition & 1 deletion Compilers/Linux/clang.ey
Expand Up @@ -17,7 +17,7 @@ searchdirs-start: "#include <...> search starts here:"
searchdirs-end: "End of search list."
resources: $exe
cppflags: -Wall -O3
cxxflags: -Wno-missing-declarations -Wno-parentheses-equality
cxxflags: -std=c++11 -Wno-missing-declarations -Wno-parentheses-equality
cflags: -Wall -O3
links:

Expand Down
2 changes: 1 addition & 1 deletion Compilers/Linux/clang32.ey
Expand Up @@ -17,7 +17,7 @@ searchdirs-start: "#include <...> search starts here:"
searchdirs-end: "End of search list."
resources: $exe
cppflags:
cxxflags: -m32 -Wno-missing-declarations -Wno-parentheses-equality
cxxflags: -std=c++11 -m32 -Wno-missing-declarations -Wno-parentheses-equality
cflags: -m32 -Wall -O3
ldlags: -m32 -Wall -O3
links:
Expand Down
2 changes: 1 addition & 1 deletion Compilers/Linux/gcc32.ey
Expand Up @@ -17,7 +17,7 @@ searchdirs-start: "#include <...> search starts here:"
searchdirs-end: "End of search list."
resources: $exe
cppflags:
cxxflags: -m32
cxxflags: -std=c++11 -m32
cflags: -m32
ldflags: -m32
links:
Expand Down

0 comments on commit ad3c81a

Please sign in to comment.