added additional compile options for final build to remove multithreading capabilities
[senf.git] / site_scons / senfutil.py
index 67ad95c..0d7c30d 100644 (file)
@@ -225,7 +225,7 @@ def DefaultOptions(env):
     # Set nice default options
     env.Append(
         CXXFLAGS         = [ '-Wall', '-Woverloaded-virtual',  "${profile and '-pg' or None}" ],
-        CXXFLAGS_final   = [ '-O3' ],
+        CXXFLAGS_final   = [ '-O3', '-fno-threadsafe-statics' ],
         CXXFLAGS_normal  = [ '-O2', '-g' ],
         CXXFLAGS_debug   = [ '-O0', '-g' ],