From 3d82f01530eb8ad4d38c9a72ae31356e8062c836 Mon Sep 17 00:00:00 2001 From: rdb Date: Sun, 28 Mar 2010 17:50:23 +0000 Subject: [PATCH] Remove FORCE_INLINING from interrogate commandline, as drwr says --- makepanda/makepanda.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makepanda/makepanda.py b/makepanda/makepanda.py index 91b235d14f..0aec4e3acc 100755 --- a/makepanda/makepanda.py +++ b/makepanda/makepanda.py @@ -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'