Browse Source

Remove FORCE_INLINING from interrogate commandline, as drwr says

rdb 15 years ago
parent
commit
3d82f01530
1 changed files with 2 additions and 2 deletions
  1. 2 2
      makepanda/makepanda.py

+ 2 - 2
makepanda/makepanda.py

@@ -765,8 +765,8 @@ def CompileIgate(woutd,wsrc,opts):
     optlevel=GetOptimizeOption(opts)
     optlevel=GetOptimizeOption(opts)
     if (optlevel==1): cmd += ' -D_DEBUG'
     if (optlevel==1): cmd += ' -D_DEBUG'
     if (optlevel==2): cmd += ' -D_DEBUG'
     if (optlevel==2): cmd += ' -D_DEBUG'
-    if (optlevel==3): cmd += ' -DFORCE_INLINING'
-    if (optlevel==4): cmd += ' -DNDEBUG -DFORCE_INLINING'
+    if (optlevel==3): pass
+    if (optlevel==4): cmd += ' -DNDEBUG'
     cmd += ' -oc ' + woutc + ' -od ' + woutd
     cmd += ' -oc ' + woutc + ' -od ' + woutd
     cmd += ' -fnames -string -refcount -assert -python-native'
     cmd += ' -fnames -string -refcount -assert -python-native'
     cmd += ' -S' + GetOutputDir() + '/include/parser-inc'
     cmd += ' -S' + GetOutputDir() + '/include/parser-inc'