From c0311fe19b1fb6516d9eae3e96753951366e1ece Mon Sep 17 00:00:00 2001 From: Davide Italiano Date: Wed, 7 Mar 2018 18:06:12 +0000 Subject: [PATCH] [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 --- lldb/lit/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/lldb/lit/CMakeLists.txt b/lldb/lit/CMakeLists.txt index 94f86dd..82296e2 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) -- 2.7.4