aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.android
diff options
context:
space:
mode:
authorDavid 'Digit' Turner <digit@android.com>2010-07-28 12:20:56 -0700
committerDavid 'Digit' Turner <digit@android.com>2010-07-28 12:20:56 -0700
commit393c0f1a4718e2670309200aa93aba91e0f7d2c7 (patch)
treeb95cc3f1558a79610b7bcf395bed95c4ef71c5e0 /Makefile.android
parent66ce9b1ec72bff7b3186c9fbdd2a7a5d96d146bd (diff)
downloadexternal_qemu-393c0f1a4718e2670309200aa93aba91e0f7d2c7.zip
external_qemu-393c0f1a4718e2670309200aa93aba91e0f7d2c7.tar.gz
external_qemu-393c0f1a4718e2670309200aa93aba91e0f7d2c7.tar.bz2
Fix Darwin build.
(qemu-arm needs to link to the Cocoa framework on Darwin). Change-Id: Ibf310682d693737ac2dd27087e6e3ba34ff6666c
Diffstat (limited to 'Makefile.android')
-rw-r--r--Makefile.android3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.android b/Makefile.android
index 5d0d6e8..f4c8374 100644
--- a/Makefile.android
+++ b/Makefile.android
@@ -772,6 +772,9 @@ else
QEMU_SYSTEM_LDLIBS += -lpthread
endif
+ifeq ($(HOST_OS),darwin)
+ QEMU_SYSTEM_LDLIBS += -Wl,-framework,Cocoa
+endif
##############################################################################