Remove FORCE_INLINING from interrogate commandline, as drwr says

This commit is contained in:
rdb 2010-03-28 17:50:23 +00:00
parent 195a8d93ad
commit 3d82f01530

View File

@ -765,8 +765,8 @@ def CompileIgate(woutd,wsrc,opts):
optlevel=GetOptimizeOption(opts)
if (optlevel==1): 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 += ' -fnames -string -refcount -assert -python-native'
cmd += ' -S' + GetOutputDir() + '/include/parser-inc'