Displaying 1 result from an estimated 1 matches for "22db07e".
Did you mean:
  22db000
  
2011 Dec 12
0
[LLVMdev] [PATCH] llvm-config: Use "all" components by default.
...fulfills following statement:
Typical components:
  all               All LLVM libraries (default).
---
 tools/llvm-config/llvm-config.cpp |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/tools/llvm-config/llvm-config.cpp b/tools/llvm-config/llvm-config.cpp
index bf3357e..22db07e 100644
--- a/tools/llvm-config/llvm-config.cpp
+++ b/tools/llvm-config/llvm-config.cpp
@@ -301,6 +301,8 @@ int main(int argc, char **argv) {
 
   if (PrintLibs || PrintLibNames || PrintLibFiles) {
     // Construct the list of all the required libraries.
+    if (Components.empty())
+      Componen...