[Lldb-commits] [lldb] r373819 - Do not install lit-cpuid

Sylvestre Ledru via lldb-commits lldb-commits at lists.llvm.org
Sat Oct 5 01:22:40 PDT 2019


Author: sylvestre
Date: Sat Oct  5 01:22:40 2019
New Revision: 373819

URL: http://llvm.org/viewvc/llvm-project?rev=373819&view=rev
Log:
Do not install lit-cpuid

Summary:
AFAIK, lit-cpuid is used by the tests. 
Installing it causes LLVMExports*.cmake files to depend
on this program.
It causes some serious packaging issues as it would means
that llvm-dev depends on lldb.

See:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=941082
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=941306

See also https://bugs.llvm.org/show_bug.cgi?id=43035
for a similar issue caused by
https://reviews.llvm.org/D56606

Reviewers: mgorny

Reviewed By: mgorny

Subscribers: delcypher, lldb-commits

Differential Revision: https://reviews.llvm.org/D68537

Modified:
    lldb/trunk/utils/lit-cpuid/CMakeLists.txt

Modified: lldb/trunk/utils/lit-cpuid/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/utils/lit-cpuid/CMakeLists.txt?rev=373819&r1=373818&r2=373819&view=diff
==============================================================================
--- lldb/trunk/utils/lit-cpuid/CMakeLists.txt (original)
+++ lldb/trunk/utils/lit-cpuid/CMakeLists.txt Sat Oct  5 01:22:40 2019
@@ -1,4 +1,4 @@
-add_llvm_utility(lit-cpuid
+add_lldb_executable(lit-cpuid
   lit-cpuid.cpp
   )
 




More information about the lldb-commits mailing list