We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7da0209 commit 90f6c8bCopy full SHA for 90f6c8b
conda-recipe/sconscript.local
@@ -11,6 +11,10 @@ env.MergeFlags(os.environ['CPPFLAGS'])
11
env.MergeFlags(os.environ['CXXFLAGS'])
12
env.MergeFlags(os.environ['LDFLAGS'])
13
14
+# Use the default c++98 language standard
15
+cxxflags98 = [f for f in env['CXXFLAGS'] if not f.startswith('-std=')]
16
+env.Replace(CXXFLAGS=cxxflags98)
17
+
18
# Silence copious warnings from the boost headers.
19
P = os.environ['PREFIX']
20
env.Prepend(CCFLAGS=['-isystem{}/include'.format(P)])
0 commit comments