'-pipe', '$CXXFLAGS_', '-fno-strict-aliasing',
"${profile and '-pg' or None}" ],
CXXFLAGS_final = [ '-O3', '-fno-threadsafe-statics','-fno-stack-protector',
- '-ffunction-sections' ],
+ "${profile and ' ' or '-ffunction-sections'}" ],
CXXFLAGS_normal = [ '-O2', '-g' ],
CXXFLAGS_debug = [ '-O0', '-g' ],
CPPDEFINES_debug = [ '$CPPDEFINES_normal' ],
LINKFLAGS = [ '-rdynamic', '$LINKFLAGS_', "${profile and '-pg' or None}" ],
- LINKFLAGS_final = [ '-Wl,--gc-sections' ],
+ LINKFLAGS_final = [ "${profile and ' ' or '-Wl,--gc-sections'}" ],
LINKFLAGS_normal = [ '-Wl,-S' ],
LINKFLAGS_debug = [ '-g' ],
)