Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Matthias Mayr
limbo
Commits
d596bfb0
Commit
d596bfb0
authored
Dec 11, 2014
by
cully
Browse files
automatic selection of the gcc cpp11 option according to its version
parent
67d13e63
Changes
1
Hide whitespace changes
Inline
Side-by-side
wscript
View file @
d596bfb0
...
...
@@ -29,7 +29,10 @@ def configure(conf):
conf
.
load
(
'tbb'
)
conf
.
load
(
'sferes'
)
common_flags
=
"-Wall -std=c++11 "
if
int
(
conf
.
env
[
'CC_VERSION'
][
0
]
+
conf
.
env
[
'CC_VERSION'
][
1
])
<
47
:
common_flags
=
"-Wall -std=c++0x "
else
:
common_flags
=
"-Wall -std=c++11 "
cxxflags
=
conf
.
env
[
'CXXFLAGS'
]
conf
.
check_boost
(
lib
=
'serialization timer filesystem
\
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment