diff options
author | Davide Italiano <davide@freebsd.org> | 2018-03-07 18:06:12 +0000 |
---|---|---|
committer | Davide Italiano <davide@freebsd.org> | 2018-03-07 18:06:12 +0000 |
commit | c0311fe19b1fb6516d9eae3e96753951366e1ece (patch) | |
tree | 229e86b1d48df753c2d064967bb91b02363b6758 | |
parent | bf3c3846733c97e890c30f98233475625fe20979 (diff) | |
download | bcm5719-llvm-c0311fe19b1fb6516d9eae3e96753951366e1ece.tar.gz bcm5719-llvm-c0311fe19b1fb6516d9eae3e96753951366e1ece.zip |
[lldbtestsuite] llvm-objcopy is now required to run the lit tests.
There's now a test using llvm-objcopy in lit/.
This doesn't fail on the bot(s) because `llvm-objcopy` is probably
already available there, but if you get a fresh checkout and run
`ninja check-lldb` you'll observe the failure as it's not tracking
the dependency correctly. This fixes the problem on my machine,
and probably everywhere else.
llvm-svn: 326919
-rw-r--r-- | lldb/lit/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/lit/CMakeLists.txt b/lldb/lit/CMakeLists.txt index 94f86dd5a5f..82296e2d744 100644 --- a/lldb/lit/CMakeLists.txt +++ b/lldb/lit/CMakeLists.txt @@ -41,6 +41,7 @@ set(LLDB_TEST_DEPS lldb lldb-test llvm-config + llvm-objcopy ) if(NOT LLDB_BUILT_STANDALONE) |