summaryrefslogtreecommitdiffstats
path: root/build/Android.common.mk
diff options
context:
space:
mode:
authorIan Rogers <irogers@google.com>2014-01-23 18:15:19 -0800
committerIan Rogers <irogers@google.com>2014-01-23 18:15:19 -0800
commit3cab422021b121cad7a4592114f1b28f636b599d (patch)
tree1f3b452fe5324a6695feea882f67ad2cc4d34a95 /build/Android.common.mk
parentc666ee8c75118d072bfd2a2b81b80915f6040593 (diff)
downloadart-3cab422021b121cad7a4592114f1b28f636b599d.zip
art-3cab422021b121cad7a4592114f1b28f636b599d.tar.gz
art-3cab422021b121cad7a4592114f1b28f636b599d.tar.bz2
Move __STDC_FORMAT_MACROS to a cflag.
Current inttypes.h don't define stdint printf formatting characters for C++ but in the future this will change. Rather than #define __STDC_FORMAT_MACROS at the point of inclusion (conventional) pass it as a cflag so there is a single place to remove the #define when conventions change. Change-Id: Ice2fb07e19d8fc06ebc534c903a2d02497c31b3d
Diffstat (limited to 'build/Android.common.mk')
-rw-r--r--build/Android.common.mk3
1 files changed, 3 insertions, 0 deletions
diff --git a/build/Android.common.mk b/build/Android.common.mk
index 415d810..0f4ade3 100644
--- a/build/Android.common.mk
+++ b/build/Android.common.mk
@@ -182,6 +182,9 @@ ART_HOST_CFLAGS += -Wthread-safety
# Make host builds easier to debug and profile by not omitting the frame pointer.
ART_HOST_CFLAGS += -fno-omit-frame-pointer
+# Workaround differences in inttypes.h.
+ART_HOST_CFLAGS += -D__STDC_FORMAT_MACROS=1
+
# To use oprofile_android --callgraph, uncomment this and recompile with "mmm art -B -j16"
# ART_TARGET_CFLAGS += -fno-omit-frame-pointer -marm -mapcs