Revert r197380, "llvm-config: Print SYSTEM_LIBS with --libs, instead of --ldflags."
authorNAKAMURA Takumi <geek4civic@gmail.com>
Wed, 18 Dec 2013 16:21:16 +0000 (16:21 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Wed, 18 Dec 2013 16:21:16 +0000 (16:21 +0000)
I will introduce another flag, like --system-libs, later.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197583 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-config/llvm-config.cpp

index b12be863426400195e48df730e747e5facf057e2..040d11103330b032deca4c6d3ae1d3b7c223bf6c 100644 (file)
@@ -285,7 +285,8 @@ int main(int argc, char **argv) {
       } else if (Arg == "--cxxflags") {
         OS << ActiveIncludeOption << ' ' << LLVM_CXXFLAGS << '\n';
       } else if (Arg == "--ldflags") {
-        OS << "-L" << ActiveLibDir << ' ' << LLVM_LDFLAGS << '\n';
+        OS << "-L" << ActiveLibDir << ' ' << LLVM_LDFLAGS
+           << ' ' << LLVM_SYSTEM_LIBS << '\n';
       } else if (Arg == "--libs") {
         PrintLibs = true;
       } else if (Arg == "--libnames") {
@@ -359,13 +360,6 @@ int main(int argc, char **argv) {
         OS << ActiveLibDir << '/' << Lib;
       }
     }
-
-    // Print system libs in the next line.
-    // Assume LLVMSupport depends on system_libs.
-    // FIXME: LLVMBuild may take care of dependencies to system_libs.
-    if (PrintLibs)
-      OS << '\n' << LLVM_SYSTEM_LIBS;
-
     OS << '\n';
   } else if (!Components.empty()) {
     errs() << "llvm-config: error: components given, but unused\n\n";