aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.android
diff options
context:
space:
mode:
authorDavid 'Digit' Turner <digit@android.com>2011-03-02 12:49:26 +0100
committerDavid 'Digit' Turner <digit@android.com>2011-03-02 15:12:49 +0100
commit0a349b838d5106d0f1f39ae77792d4bdd7f8d35f (patch)
treeccae3a22e1dc1bd835760ae447157494dc43f8c7 /Makefile.android
parentd0986186d4d5ff176a26d941bb53d3856d28304a (diff)
downloadexternal_qemu-0a349b838d5106d0f1f39ae77792d4bdd7f8d35f.zip
external_qemu-0a349b838d5106d0f1f39ae77792d4bdd7f8d35f.tar.gz
external_qemu-0a349b838d5106d0f1f39ae77792d4bdd7f8d35f.tar.bz2
Fix the standalone emulator build.
The previous commit broke it due to the way it handled LOCAL_AR. Change-Id: I3458f9306b3fca9771d868673ae89f4d995aeec3
Diffstat (limited to 'Makefile.android')
-rw-r--r--Makefile.android4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.android b/Makefile.android
index 428b63a..dd05398 100644
--- a/Makefile.android
+++ b/Makefile.android
@@ -25,7 +25,9 @@ endif
CONFIG_INCLUDES := $(CONFIG_DIRS:%=-I%)
-MY_CC := $(HOST_CC)
+MY_CC := $(HOST_CC)
+MY_CXX := $(HOST_CXX)
+MY_AR := $(HOST_AR)
MY_OPTIM := -O2 -g -fno-PIC -falign-functions=0 -fomit-frame-pointer
ifeq ($(BUILD_DEBUG_EMULATOR),true)