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