From 18c119b4d52abfc3780693bc109eb91ae82b6817 Mon Sep 17 00:00:00 2001 From: Scott Ehlert Date: Fri, 17 Jun 2011 18:00:32 -0500 Subject: [PATCH] Removed -static-libgcc for Mac OS X build (no bug, r=dvander). This fixes the ld warning: could not create compact unwind for __Unwind_Resume: non-standard register 0 being saved in prolog --- AMBuildScript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/AMBuildScript b/AMBuildScript index 2a6b2863..f605acc0 100644 --- a/AMBuildScript +++ b/AMBuildScript @@ -99,7 +99,6 @@ class SM: self.compiler.AddToListVar('CDEFINES', 'HAVE_STDINT_H') if self.vendor == 'gcc': self.compiler.AddToListVar('CFLAGS', '-mfpmath=sse') - self.compiler.AddToListVar('POSTLINKFLAGS', '-static-libgcc') elif isinstance(cxx, Cpp.MSVC): self.vendor = 'msvc' if AMBuild.options.debug == '1': @@ -155,6 +154,8 @@ class SM: #Platform-specifics if AMBuild.target['platform'] == 'linux': self.compiler.AddToListVar('CDEFINES', '_LINUX') + if self.vendor == 'gcc': + self.compiler.AddToListVar('POSTLINKFLAGS', '-static-libgcc') if self.vendor == 'clang': self.compiler.AddToListVar('POSTLINKFLAGS', '-lgcc_eh') elif AMBuild.target['platform'] == 'darwin':