1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-02-20 13:54:14 +01:00

Moved --static-gcc to linker flags (bug 4876, r=dvander).

This commit is contained in:
Fyren 2011-04-26 07:47:12 -04:00
parent 29df2351c9
commit a601dced41

View File

@ -97,7 +97,7 @@ class MMS:
self.compiler.AddToListVar('CDEFINES', 'HAVE_STDINT_H')
if self.vendor == 'gcc':
self.compiler.AddToListVar('CFLAGS', '-mfpmath=sse')
self.compiler.AddToListVar('CFLAGS', '-static-libgcc')
self.compiler.AddToListVar('POSTLINKFLAGS', '-static-libgcc')
elif isinstance(cxx, Cpp.MSVC):
self.vendor = 'msvc'
if AMBuild.options.debug == '1':