android_mt6572_jiabo/ndk/tests/build/issue79115-confusing-ld.gold-warning/jni/Android.mk
2025-09-05 16:56:03 +08:00

14 lines
427 B
Makefile

LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := issue79115-confusing-ld.gold-warning
LOCAL_SRC_FILES := issue79115-confusing-ld.gold-warning.c
LOCAL_DISABLE_NO_EXECUTE := true
LOCAL_LDFLAGS += -Wl,--fatal-warnings
ifneq ($(filter clang%,$(NDK_TOOLCHAIN_VERSION)),)
# Disable integrated assembler because -Wa,--execstack isn't supported
LOCAL_CFLAGS += -fno-integrated-as
endif
include $(BUILD_EXECUTABLE)