diff options
author | Chih-Wei Huang <cwhuang@android-x86.org> | 2015-04-04 05:01:21 +0800 |
---|---|---|
committer | Emil Velikov <emil.l.velikov@gmail.com> | 2015-04-22 15:53:35 +0100 |
commit | 671a55084649f9e33018b1e5e1af4e28c639bf3b (patch) | |
tree | 489e7e03eeed27433a532e48a83b2ce70653fc2a /Android.common.mk | |
parent | 076edc6a036cb7601e010b7851eeaa7cfb1aa4e6 (diff) | |
download | mesa-671a55084649f9e33018b1e5e1af4e28c639bf3b.tar.gz |
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 <cwhuang@linux.org.tw>
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
Diffstat (limited to 'Android.common.mk')
-rw-r--r-- | Android.common.mk | 2 |
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 |