blob: 6623f9e3861237875ee36692cb0e0fd62e8aee24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
ifeq ($(TARGET_ARCH),arm)
LOCAL_PATH:= $(call my-dir)
# For the host
# =====================================================
include $(CLEAR_VARS)
LOCAL_SRC_FILES := \
EdgeProfiling.cpp \
ProfilingUtils.cpp \
OptimalEdgeProfiling.cpp
LOCAL_MODULE:= libLLVMInstrumentation
include $(LLVM_HOST_BUILD_MK)
include $(BUILD_HOST_STATIC_LIBRARY)
endif
|