Disable RTTI for game-agnostic extensions
This commit is contained in:
		
							parent
							
								
									f08b60bc98
								
							
						
					
					
						commit
						d9e6daa006
					
				| @ -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', | ||||
|  | ||||
| @ -5,6 +5,10 @@ binary = SM.ExtLibrary(builder, 'clientprefs.ext') | ||||
| binary.compiler.cxxincludes += [ | ||||
|   os.path.join(SM.mms_root, 'core', 'sourcehook'), | ||||
| ] | ||||
| 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', | ||||
|  | ||||
| @ -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'] | ||||
|  | ||||
| @ -5,6 +5,10 @@ binary = SM.ExtLibrary(builder, 'dbi.sqlite.ext') | ||||
| binary.compiler.cxxincludes += [ | ||||
|   os.path.join(SM.mms_root, 'core', 'sourcehook'), | ||||
| ] | ||||
| 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.defines += [ | ||||
|   'SQLITE_OMIT_LOAD_EXTENSION', | ||||
|  | ||||
| @ -5,6 +5,10 @@ binary = SM.ExtLibrary(builder, 'topmenus.ext') | ||||
| binary.compiler.cxxincludes += [ | ||||
|   os.path.join(SM.mms_root, 'core', 'sourcehook'), | ||||
| ] | ||||
| 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', | ||||
|  | ||||
| @ -5,6 +5,10 @@ binary = SM.ExtLibrary(builder, 'updater.ext') | ||||
| binary.compiler.cxxincludes += [ | ||||
|   os.path.join(SM.mms_root, 'core', 'sourcehook'), | ||||
| ] | ||||
| 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', | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user