Disable RTTI for game-agnostic extensions

This commit is contained in:
Nicholas Hastings
2014-09-11 17:28:24 -07:00
parent c62e7458f9
commit 47450bb98c
6 changed files with 24 additions and 0 deletions
+4
View File
@@ -8,6 +8,10 @@ binary.compiler.cxxincludes += [
os.path.join(builder.sourcePath, 'public', 'jit'),
os.path.join(builder.sourcePath, 'public', 'jit', 'x86'),
]
if binary.compiler.vendor == 'gcc' or binary.compiler.vendor == 'clang':
binary.compiler.cxxflags += ['-fno-rtti']
elif binary.compiler.vendor == 'msvc':
binary.compiler.cxxflags += ['/GR-']
binary.sources += [
'extension.cpp',