summaryrefslogtreecommitdiffstats
path: root/Android.common.mk
diff options
context:
space:
mode:
authorChih-Wei Huang <[email protected]>2015-04-04 05:01:21 +0800
committerEmil Velikov <[email protected]>2015-04-22 15:53:35 +0100
commit671a55084649f9e33018b1e5e1af4e28c639bf3b (patch)
tree489e7e03eeed27433a532e48a83b2ce70653fc2a /Android.common.mk
parent076edc6a036cb7601e010b7851eeaa7cfb1aa4e6 (diff)
android: fix building issues of host binaries
Define _GNU_SOURCE to enable features (__USE_XOPEN2K and __USE_UNIX98) required to build the host binaries. Signed-off-by: Chih-Wei Huang <[email protected]> Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'Android.common.mk')
-rw-r--r--Android.common.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/Android.common.mk b/Android.common.mk
index a4ee181b752..edf52d6fabb 100644
--- a/Android.common.mk
+++ b/Android.common.mk
@@ -24,7 +24,7 @@
# use c99 compiler by default
ifeq ($(LOCAL_CC),)
ifeq ($(LOCAL_IS_HOST_MODULE),true)
-LOCAL_CC := $(HOST_CC) -std=c99
+LOCAL_CC := $(HOST_CC) -std=c99 -D_GNU_SOURCE
else
LOCAL_CC := $(TARGET_CC) -std=c99
endif