1 LOCAL_PATH := $(call my-dir) 2 3 include $(CLEAR_VARS) 4 LOCAL_MODULE := issue65705-asm-pc 5 LOCAL_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. 9 LOCAL_LDFLAGS := -static 10 include $(BUILD_EXECUTABLE) 11