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.includes += [
os.path.join(builder.sourcePath, 'extensions', 'curl', 'curl-src', 'include')
]
binary.compiler.defines += ['CURL_STATICLIB']
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.compiler.postlink += [libcurl.binary]
if builder.target_platform == 'linux':
binary.compiler.postlink += ['-lrt']