diff options
author | Jay Freeman <saurik@saurik.com> | 2014-05-13 10:35:53 +0000 |
---|---|---|
committer | Jay Freeman <saurik@saurik.com> | 2014-05-13 10:35:53 +0000 |
commit | c5045f96bf8c0513ffeeb116d4f8aa2f73bfe430 (patch) | |
tree | 471844cf6bce89b2324c25ccf019aec2443372f7 /make.sh | |
parent | 2302cce14d77e6518feb4793b2b8db90dab913c6 (diff) |
Some packages require -fno-common on OS X gcc.
git-svn-id: http://svn.telesphoreo.org/trunk@783 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'make.sh')
-rwxr-xr-x | make.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -139,7 +139,7 @@ function pkg:configure() { export -f pkg:configure function pkg:make() { - make CC="${PKG_TARG}-gcc" AR="${PKG_TARG}-ar" CFLAGS='-O2 -mthumb' + make CC="${PKG_TARG}-gcc" AR="${PKG_TARG}-ar" CFLAGS='-O2 -mthumb -fno-common' } export -f pkg:make |