From 075c621d834af7ffc32d2067fadb147cc1758b99 Mon Sep 17 00:00:00 2001 From: Chris Wailes Date: Mon, 2 Jun 2014 11:53:16 -0700 Subject: Adds the ability to run the llvm test suite in-tree. This was accomplished by building additional tools and hand-generating several files that are auto-generated by the configuration system when LLVM is built out-of-tree. The LTO, Interpreter, and DebugInfo libraries are now being compiled, and several source files were added to existing compilation targets. To run these tests you must first run build/envsetup.sh and have used lunch to select a target. You can then launch the test script by running: cd $ANDROID_BUILD_TOP/external/llvm && ./android_test.sh Bug: 15433215 Change-Id: I43d87de0a4620cdd46c8d0f825dd4428e8409702 --- tools/macho-dump/Android.mk | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 tools/macho-dump/Android.mk (limited to 'tools/macho-dump') diff --git a/tools/macho-dump/Android.mk b/tools/macho-dump/Android.mk new file mode 100644 index 0000000..9699d4a --- /dev/null +++ b/tools/macho-dump/Android.mk @@ -0,0 +1,35 @@ +LOCAL_PATH := $(call my-dir) + +LLVM_ROOT_PATH := $(LOCAL_PATH)/../.. + + +#===---------------------------------------------------------------=== +# macho-dump command line tool +#===---------------------------------------------------------------=== + +macho_dump_SRC_FILES := \ + macho-dump.cpp + +macho_dump_STATIC_LIBRARIES := \ + libLLVMObject \ + libLLVMBitReader \ + libLLVMCore \ + libLLVMSupport \ + +include $(CLEAR_VARS) + +LOCAL_MODULE := macho-dump +LOCAL_MODULE_TAGS := optional +LOCAL_MODULE_CLASS := EXECUTABLES +LOCAL_IS_HOST_MODULE := true + +LOCAL_SRC_FILES := $(macho_dump_SRC_FILES) + +LOCAL_STATIC_LIBRARIES := $(macho_dump_STATIC_LIBRARIES) + +LOCAL_LDLIBS += -lpthread -lm -ldl + +include $(LLVM_ROOT_PATH)/llvm.mk +include $(LLVM_HOST_BUILD_MK) +include $(LLVM_GEN_INTRINSICS_MK) +include $(BUILD_HOST_EXECUTABLE) -- cgit v1.1