1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-01-19 08:52:34 +01:00

Hacks to correct linking.

This commit is contained in:
David Anderson 2014-09-10 23:07:44 -07:00
parent ed081f045e
commit ef1cdc9767
2 changed files with 4 additions and 0 deletions

View File

@ -348,6 +348,8 @@ class MMSConfig(object):
linker = make_linker(source_path, output_path)
binary.compiler.linkflags[0:0] = [binary.Dep(library, linker)]
binary.compiler.linkflags[0:0] = ['-Wl,--no-as-needed']
return binary
MMS = MMSConfig()

View File

@ -114,5 +114,7 @@ void operator delete(void * ptr) {
void operator delete[](void * ptr) {
free(ptr);
}
void *__gxx_personality_v0;
#endif