Android.mk 421 B

123456789101112
  1. LOCAL_PATH := $(call my-dir)
  2. include $(CLEAR_VARS)
  3. LOCAL_MODULE := lz4
  4. LOCAL_SRC_FILES := ../../lz4.c ../../lz4hc.c ../../xxhash.c
  5. LOCAL_CFLAGS := -O3 -fshort-wchar -ffast-math -fomit-frame-pointer
  6. LOCAL_CPPFLAGS := -O3 -fshort-wchar -ffast-math -fomit-frame-pointer
  7. LOCAL_CPP_FEATURES := # rtti exceptions
  8. LOCAL_ARM_NEON := true # force NEON usage for all files
  9. include $(BUILD_STATIC_LIBRARY)