diff options
author | Al Sutton <al@funkyandroid.com> | 2012-05-07 09:59:14 +0100 |
---|---|---|
committer | Al Sutton <al@funkyandroid.com> | 2012-05-07 09:59:14 +0100 |
commit | 108cfc15146783b72d3d427b5d9288ef15a4764a (patch) | |
tree | 7068305e42d77c0b74e0693937c6a1ed0161fb25 /Makefile.android | |
parent | 2485e9e3412fbe9e27bb2d44950106349988dca6 (diff) | |
download | external_qemu-108cfc15146783b72d3d427b5d9288ef15a4764a.zip external_qemu-108cfc15146783b72d3d427b5d9288ef15a4764a.tar.gz external_qemu-108cfc15146783b72d3d427b5d9288ef15a4764a.tar.bz2 |
Use the same compilation options on OS X 10.8 as 10.7
Use the same linker option for handling dynamic libraries on OS X 10.8
as has been previously used on 10.7
Change-Id: I18860d779a2caa695cf4016da6d2123726b58427
Signed-off-by: Al Sutton <al@funkyandroid.com>
Diffstat (limited to 'Makefile.android')
-rw-r--r-- | Makefile.android | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.android b/Makefile.android index 797bb71..d61264b 100644 --- a/Makefile.android +++ b/Makefile.android @@ -209,8 +209,8 @@ endif ifeq ($(HOST_OS),darwin) QEMU_SYSTEM_LDLIBS += -Wl,-framework,Cocoa,-framework,QTKit,-framework,CoreVideo - ifneq ($(filter 10.7 10.7.%,$(DARWIN_VERSION)),) - # Lion/XCode4 needs to be explicitly told the dynamic library + ifneq ($(filter 10.7 10.7.% 10.8 10.8.%,$(DARWIN_VERSION)),) + # 10.7+ with XCode4 needs to be explicitly told the dynamic library # lookup symbols in the precompiled libSDL are resolved at # runtime QEMU_SYSTEM_LDLIBS += -undefined dynamic_lookup |