summaryrefslogtreecommitdiff
path: root/lib/Android.mk
diff options
context:
space:
mode:
authorTim Gore <tim.gore@intel.com>2014-12-12 12:14:33 +0000
committerThomas Wood <thomas.wood@intel.com>2014-12-12 12:18:22 +0000
commita11117e42fabc3228d21a4786584acbe9840f1dc (patch)
treea8fee636e5b2a79917b434de0fdf36436b3b59ba /lib/Android.mk
parent264e1ac10ac14a098a78cc9f96c4e7cabb124ee5 (diff)
Android.mk: replace std=c99 with std=gnu99
The android makefiles were passing the -std=c99 flag to the compiler which disables the typeof keyword. This causes a build fail for a recent addition to igt_aux.h. Change this to -std=gnu99, which is the flag used in the linux build Signed-off-by: Tim Gore <tim.gore@intel.com> Signed-off-by: Thomas Wood <thomas.wood@intel.com>
Diffstat (limited to 'lib/Android.mk')
-rw-r--r--lib/Android.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Android.mk b/lib/Android.mk
index bd8cf585..548bca4c 100644
--- a/lib/Android.mk
+++ b/lib/Android.mk
@@ -25,7 +25,7 @@ LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)
LOCAL_CFLAGS += -DHAVE_LIBDRM_ATOMIC_PRIMITIVES
LOCAL_CFLAGS += -DHAVE_STRUCT_SYSINFO_TOTALRAM
LOCAL_CFLAGS += -DANDROID
-LOCAL_CFLAGS += -std=c99
+LOCAL_CFLAGS += -std=gnu99
LOCAL_MODULE:= libintel_gpu_tools
LOCAL_SHARED_LIBRARIES := libpciaccess \