Move the debug return stack into PluginContext.

This commit is contained in:
2015-02-24 15:20:00 -08:00
parent 8c35d79576
commit 37af05c456
8 changed files with 56 additions and 26 deletions
+4 -1
View File
@@ -18,7 +18,10 @@ def setup(binary):
compiler = binary.compiler
compiler.includes += Includes
if compiler.vendor == 'gcc' or compiler.vendor == 'clang':
compiler.cxxflags += ['-fno-rtti']
compiler.cxxflags += [
'-fno-rtti',
'-Wno-invalid-offsetof',
]
elif binary.compiler.vendor == 'msvc':
compiler.cxxflags += ['/GR-']