Skip to content
Snippets Groups Projects
Commit 372c240b authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Use -std=c++0x instead of -std=c++11 through out

parent c4a5513f
Branches
Tags
No related merge requests found
...@@ -142,7 +142,7 @@ class Extension(DistutilsExtension): ...@@ -142,7 +142,7 @@ class Extension(DistutilsExtension):
# Mixing # Mixing
parameters = { parameters = {
'define_macros': generate_self_macros(args[0], version), 'define_macros': generate_self_macros(args[0], version),
'extra_compile_args': ['-std=c++11'], 'extra_compile_args': ['-std=c++0x'], #synomym for c++11?
'library_dirs': [], 'library_dirs': [],
'libraries': [], 'libraries': [],
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment