From ba2d572d2604e72dae52571a8baa824c2c87c528 Mon Sep 17 00:00:00 2001 From: Chris Bieneman Date: Fri, 9 Oct 2015 17:45:44 +0000 Subject: [PATCH] [CMake] Fixing LTO library path passed into bootstrap builds. This just fixes a small error in constructing the path to the LTO library. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@249858 91177308-0d34-0410-b5e6-96231b3b80d8 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2efed061db..2325170372 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -598,7 +598,7 @@ if (CLANG_ENABLE_BOOTSTRAP) # DARWIN_LTO_LIBRARY so that -flto will work using the just-built compiler if(APPLE) set(LTO_DEP LTO llvm-ar llvm-ranlib) - set(LTO_LIBRARY -DDARWIN_LTO_LIBRARY=${LLVM_RUNTIME_OUTPUT_INTDIR}/libLTO.dylib) + set(LTO_LIBRARY -DDARWIN_LTO_LIBRARY=${LLVM_SHLIB_OUTPUT_INTDIR}/libLTO.dylib) set(LTO_AR -DCMAKE_AR=${LLVM_RUNTIME_OUTPUT_INTDIR}/llvm-ar) set(LTO_RANLIB -DCMAKE_RANLIB=${LLVM_RUNTIME_OUTPUT_INTDIR}/llvm-ranlib) endif() -- 2.40.0