Home | History | Annotate | Download | only in jni
      1 LOCAL_PATH := $(call my-dir)
      2 
      3 ifeq ($(strip $(filter-out $(NDK_KNOWN_ARCHS),$(TARGET_ARCH))),)
      4 include $(CLEAR_VARS)
      5 LOCAL_MODULE := issue22336-ICE-emit-rtl
      6 LOCAL_ARM_NEON := true
      7 LOCAL_CFLAGS += -O0
      8 LOCAL_SRC_FILES := issue22336-ICE-emit-rtl.cpp
      9 include $(BUILD_SHARED_LIBRARY)
     10 endif
     11