1LOCAL_PATH := $(call my-dir)
2
3include $(CLEAR_VARS)
4LOCAL_MODULE := issue65705-asm-pc
5LOCAL_SRC_FILES := issue65705-asm-pc.c
6# Using -static to prevent ndk-build from adding -fPIE even when APP_PIE is set
7# to true from the command line. The compiler bug this test is trying to show is
8# not present when compiling with -fPIE.
9LOCAL_LDFLAGS := -static
10include $(BUILD_EXECUTABLE)
11