1 LOCAL_PATH := $(call my-dir) 2 3 include $(CLEAR_VARS) 4 LOCAL_MODULE := issue79115-confusing-ld.gold-warning 5 LOCAL_SRC_FILES := issue79115-confusing-ld.gold-warning.c 6 LOCAL_DISABLE_NO_EXECUTE := true 7 LOCAL_LDFLAGS += -Wl,--fatal-warnings 8 9 ifneq ($(filter clang%,$(NDK_TOOLCHAIN_VERSION)),) 10 # Disable integrated assembler because -Wa,--execstack isn't supported 11 LOCAL_CFLAGS += -fno-integrated-as 12 endif 13 14 include $(BUILD_EXECUTABLE) 15