diff options
author | Chris Wailes <chriswailes@google.com> | 2014-06-02 11:53:16 -0700 |
---|---|---|
committer | Chris Wailes <chriswailes@google.com> | 2014-06-06 18:19:16 -0700 |
commit | 075c621d834af7ffc32d2067fadb147cc1758b99 (patch) | |
tree | f4f29ff2e71102ee86111bc695830ae5850ec50c /tools/llvm-readobj | |
parent | a637ea99e253d9d3bd16ebb9e33f5828d38d94de (diff) | |
download | external_llvm-075c621d834af7ffc32d2067fadb147cc1758b99.zip external_llvm-075c621d834af7ffc32d2067fadb147cc1758b99.tar.gz external_llvm-075c621d834af7ffc32d2067fadb147cc1758b99.tar.bz2 |
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
Diffstat (limited to 'tools/llvm-readobj')
-rw-r--r-- | tools/llvm-readobj/Android.mk | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/tools/llvm-readobj/Android.mk b/tools/llvm-readobj/Android.mk new file mode 100644 index 0000000..10c99db --- /dev/null +++ b/tools/llvm-readobj/Android.mk @@ -0,0 +1,47 @@ +LOCAL_PATH := $(call my-dir) + +LLVM_ROOT_PATH := $(LOCAL_PATH)/../.. + + +#===---------------------------------------------------------------=== +# llvm-readobj command line tool +#===---------------------------------------------------------------=== + +llvm_readobj_SRC_FILES := \ + ARMAttributeParser.cpp \ + COFFDumper.cpp \ + ELFDumper.cpp \ + Error.cpp \ + llvm-readobj.cpp \ + MachODumper.cpp \ + ObjDumper.cpp \ + StreamWriter.cpp \ + Win64EHDumper.cpp \ + +llvm_readobj_STATIC_LIBRARIES := \ + libLLVMARMInfo \ + libLLVMAArch64Info \ + libLLVMMipsInfo \ + libLLVMX86Info \ + libLLVMObject \ + libLLVMBitReader \ + libLLVMCore \ + libLLVMSupport \ + +include $(CLEAR_VARS) + +LOCAL_MODULE := llvm-readobj +LOCAL_MODULE_TAGS := optional +LOCAL_MODULE_CLASS := EXECUTABLES +LOCAL_IS_HOST_MODULE := true + +LOCAL_SRC_FILES := $(llvm_readobj_SRC_FILES) + +LOCAL_STATIC_LIBRARIES := $(llvm_readobj_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) |