diff options
author | Stephen Hines <srhines@google.com> | 2015-04-01 19:21:59 -0700 |
---|---|---|
committer | Stephen Hines <srhines@google.com> | 2015-04-02 01:41:18 -0700 |
commit | ceee4f98348e1a34c13efee0cec892ce5d2fa98b (patch) | |
tree | df33f9d517b77b3d7a8271e7b164418d7a3a4da9 /test | |
parent | 3fa16bd6062e23bcdb82ed4dd965674792e6b761 (diff) | |
download | external_llvm-ceee4f98348e1a34c13efee0cec892ce5d2fa98b.zip external_llvm-ceee4f98348e1a34c13efee0cec892ce5d2fa98b.tar.gz external_llvm-ceee4f98348e1a34c13efee0cec892ce5d2fa98b.tar.bz2 |
Update lit.site.cfg to be able to run LLVM tests properly again.
Bug: 15433215
Add support for building llvm-dsymutil.
Add support for building llvm-pdbdump.
We still have 4 unexpected failures to track down with the Android build/run
of these tests. These are all related to module loading support.
Change-Id: Ibd39cbd2c0ee232a0df23a414d491420493ea94a
Diffstat (limited to 'test')
-rw-r--r-- | test/lit.site.cfg | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/lit.site.cfg b/test/lit.site.cfg index 6967b23..3c15650 100644 --- a/test/lit.site.cfg +++ b/test/lit.site.cfg @@ -7,6 +7,7 @@ aosp_dir = os.getenv("ANDROID_BUILD_TOP") # Do not edit! config.enable_ffi = "" config.go_executable = "" +config.gold_executable = "ld" config.have_ocamlopt = "" config.have_ocaml_ounit = "" config.host_triple = "x86_64-unknown-linux-gnu" @@ -32,7 +33,8 @@ config.host_os = "Linux" config.host_arch = "x86_64" config.llvm_use_intel_jitevents = "OFF" config.llvm_use_sanitizer = "" -config.have_zlib = "0" +config.have_zlib = "" +config.have_dia_sdk = 0 # Support substitution of the tools_dir with user parameters. This is # used when we can't determine the tool dir at configuration time. |