diff options
author | Andrew Hsieh <andrewhsieh@google.com> | 2012-05-31 22:41:29 -0700 |
---|---|---|
committer | android code review <noreply-gerritcodereview@google.com> | 2012-05-31 22:41:29 -0700 |
commit | d812e574932a0ed386165532868a6854e8c1b331 (patch) | |
tree | c65bfc8e7ababc8cd72462d5af7544da6d091e3c /Makefile.android | |
parent | 3d218582b2edf2d7cdd0dca038814753efa415ff (diff) | |
parent | d00f7c4b4cbd09aa9fdcd484f0eb764417134657 (diff) | |
download | external_qemu-d812e574932a0ed386165532868a6854e8c1b331.zip external_qemu-d812e574932a0ed386165532868a6854e8c1b331.tar.gz external_qemu-d812e574932a0ed386165532868a6854e8c1b331.tar.bz2 |
Merge "fix BUILD_DEBUG_EMULATOR build"
Diffstat (limited to 'Makefile.android')
-rw-r--r-- | Makefile.android | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.android b/Makefile.android index d61264b..00faa1c 100644 --- a/Makefile.android +++ b/Makefile.android @@ -39,8 +39,9 @@ MY_CFLAGS := $(CONFIG_INCLUDES) $(MY_OPTIM) # Overwrite configuration for debug builds. # ifeq ($(BUILD_DEBUG_EMULATOR),true) - MY_CFLAGS := $(CONFIG_INCLUDES) -O0 -g \ - -fno-PIC -falign-functions=0 + MY_CFLAGS := $(CONFIG_INCLUDES) + MY_CFLAGS += -O0 -g + MY_CFLAGS += -fno-PIC -falign-functions=0 endif MY_LDLIBS := |