[llvm-dev] Linker errors after installing/compiling LLVM/CLANG
Neil Nelson via llvm-dev
llvm-dev at lists.llvm.org
Sun Jul 7 12:48:21 PDT 2019
Joan, For ninja here I would do the following, noting
https://llvm.org/docs/GettingStarted.html
cd llvm-project
rm -rf build
mkdir build
cd build
Your cmake line might be
cmake -G Ninja -DLLVM_ENABLE_PROJECTS=clang
-DCMAKE_INSTALL_PREFIX=/Users/joan/LLVM-9/install
-DLLVM_OPTIMIZED_TABLEGEN=On ../llvm
I would use
cmake -G Ninja -DLLVM_ENABLE_PROJECTS="clang" -DLLVM_USE_LINKER=lld
-DCMAKE_BUILD_TYPE="Release"
-DCMAKE_INSTALL_PREFIX=/Users/joan/LLVM-9/install ../llvm
ninja
ninja install
I am not familiar with Xcode. But if the above works you might be in a
position to use the executables and libraries in the just installed
directory in an Xcode project.
Neil
On 7/7/19 12:59 PM, Joan Lluch via llvm-dev wrote:
> Hi zturner
>
> Please, would you describe me step by step how do I get both a Xcode
> project and a Ninja setup for compiling the same?
>
> I have downloaded the Ninja-mac binary from here
> https://github.com/ninja-build/ninja/releases and have setup system
> path to it. What’s next?
>
> Thanks
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20190707/4cb67c37/attachment.html>
More information about the llvm-dev
mailing list