From: NAKAMURA Takumi Date: Thu, 19 Dec 2013 16:02:23 +0000 (+0000) Subject: llvm-config: Show build root instead of parent path in build tree with --obj-root... X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=af224d7584b0d4da089f189c131a8b70f88b11e3;p=oota-llvm.git llvm-config: Show build root instead of parent path in build tree with --obj-root for CMake multiconfig. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197683 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvm-config/llvm-config.cpp b/tools/llvm-config/llvm-config.cpp index 546963d833f..fa568e67270 100644 --- a/tools/llvm-config/llvm-config.cpp +++ b/tools/llvm-config/llvm-config.cpp @@ -248,6 +248,7 @@ int main(int argc, char **argv) { ActiveLibDir = ActiveObjRoot + "/lib"; break; case CMakeBuildModeStyle: + ActivePrefix = ActiveObjRoot; ActiveBinDir = ActiveObjRoot + "/bin/" + build_mode; ActiveLibDir = ActiveObjRoot + "/lib/" + build_mode; break;