X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=Android.common.mk;h=9141ef951d6c34c748e3540941edcfecb60f34e9;hb=7b53ac1c1f46046d31577fbc866931ec54a5c4eb;hp=619b216b63b2a880583f4465ebb635ba87b97c14;hpb=d0b63b6583779305dfc55a97a6f18acf183d3871;p=mesa.git diff --git a/Android.common.mk b/Android.common.mk index 619b216b63b..9141ef951d6 100644 --- a/Android.common.mk +++ b/Android.common.mk @@ -32,14 +32,14 @@ LOCAL_C_INCLUDES += \ MESA_VERSION := $(shell cat $(MESA_TOP)/VERSION) LOCAL_CFLAGS += \ -Wno-error \ + -Werror=incompatible-pointer-types \ -Wno-unused-parameter \ -Wno-pointer-arith \ -Wno-missing-field-initializers \ -Wno-initializer-overrides \ -Wno-mismatched-tags \ - -DVERSION=\"$(MESA_VERSION)\" \ -DPACKAGE_VERSION=\"$(MESA_VERSION)\" \ - -DPACKAGE_BUGREPORT=\"https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa\" + -DPACKAGE_BUGREPORT=\"https://gitlab.freedesktop.org/mesa/mesa/-/issues\" # XXX: The following __STDC_*_MACROS defines should not be needed. # It's likely due to a bug elsewhere, but let's temporarily add them @@ -76,6 +76,8 @@ LOCAL_CFLAGS += \ -DMAJOR_IN_SYSMACROS \ -DVK_USE_PLATFORM_ANDROID_KHR \ -fvisibility=hidden \ + -fno-math-errno \ + -fno-trapping-math \ -Wno-sign-compare LOCAL_CPPFLAGS += \ @@ -96,12 +98,14 @@ ifeq ($(filter 5 6 7 8 9, $(MESA_ANDROID_MAJOR_VERSION)),) LOCAL_CFLAGS += -DHAVE_TIMESPEC_GET endif -ifeq ($(strip $(MESA_ENABLE_ASM)),true) +# Android's libc began supporting shm in Oreo +ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26 && echo true),true) +LOCAL_CFLAGS += -DHAVE_SYS_SHM_H +endif + ifeq ($(TARGET_ARCH),x86) LOCAL_CFLAGS += \ -DUSE_X86_ASM - -endif endif ifeq ($(ARCH_ARM_HAVE_NEON),true) LOCAL_CFLAGS_arm += -DUSE_ARM_ASM