From 34949bb1a6677c6be4d74fab694f09fbd6eb0e95 Mon Sep 17 00:00:00 2001 From: Stephen Hines Date: Thu, 4 Dec 2014 01:12:46 -0800 Subject: Update LLVM lit test configuration to be able to work for 3.6. Add support for building more host verification tools: + LLVMHello.so (loadable plugin pass) + lli-child-target + llvm-symbolizer (missing some Android.mk magic) + llvm-vtabledump + verify-uselistorder Change-Id: Id7a9397bf458e97fc330ea0301ebb001750aac7c --- test/lit.site.cfg | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/lit.site.cfg b/test/lit.site.cfg index 4614eb8..6967b23 100644 --- a/test/lit.site.cfg +++ b/test/lit.site.cfg @@ -5,21 +5,29 @@ aosp_dir = os.getenv("ANDROID_BUILD_TOP") ## Autogenerated by LLVM/Clang configuration. # Do not edit! +config.enable_ffi = "" +config.go_executable = "" +config.have_ocamlopt = "" +config.have_ocaml_ounit = "" config.host_triple = "x86_64-unknown-linux-gnu" config.target_triple = "x86_64-unknown-linux-gnu" config.llvm_src_root = aosp_dir + "/external/llvm" config.llvm_obj_root = aosp_dir + "/out/host/linux-x86/obj/test_llvm" config.llvm_tools_dir = aosp_dir + "/out/host/linux-x86/bin" -config.llvm_shlib_dir = aosp_dir + "/out/host/linux-x86/lib" +config.llvm_shlib_dir = aosp_dir + "/out/host/linux-x86/lib64" config.llvm_shlib_ext = ".so" config.llvm_exe_ext = "" config.lit_tools_dir = "" config.python_executable = "/usr/bin/python" -config.ocamlopt_executable = "" +config.ocaml_flags = "" +config.ocamlfind_executable = "" config.enable_shared = 0 config.enable_assertions = 0 config.targets_to_build = " X86 AArch64 ARM Mips" config.llvm_bindings = "" +config.host_cc = "clang" +config.host_cxx = "clang++" +config.host_ldflags = "" config.host_os = "Linux" config.host_arch = "x86_64" config.llvm_use_intel_jitevents = "OFF" -- cgit v1.1