Riley Andrews | d7822e6 | 2015-08-17 16:42:26 -0700 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
2 | |||||
3 | include $(CLEAR_VARS) | ||||
4 | LOCAL_CLANG := true | ||||
5 | LOCAL_MODULE := memcpy-perf | ||||
6 | LOCAL_CFLAGS += -g -Wall -Werror -std=c++11 -Wno-missing-field-initializers -Wno-sign-compare -O3 | ||||
7 | LOCAL_SRC_FILES := memcpy-perf.cpp test-funcs.cpp | ||||
8 | LOCAL_FORCE_STATIC_EXECUTABLE := true | ||||
9 | LOCAL_CXX_STL := libc++_static | ||||
10 | LOCAL_STATIC_LIBRARIES := libc | ||||
11 | include $(BUILD_EXECUTABLE) |