How do I make Xcode use an alternative version of clang?

前端 未结 2 1172
后悔当初
后悔当初 2021-01-04 20:29

How can I set up Xcode up to use the clang distributed by llvm.org instead of the one shipped by Apple?

If I download the clang binaries and install to /usr/loc

相关标签:
2条回答
  • 2021-01-04 21:11

    Its an old question, but since I wanted to install more recent clang/libc++ to use with Xcode 9+, here is my solution in hope it would be useful for someone.

    1. If you are building from source, make sure to pass -DLLVM_CREATE_XCODE_TOOLCHAIN=ON to cmake, afterwards run make install-xcode-toolchain. If you install with homebrew, use the brew install --with-toolchain llvm
    2. Copy the toolchain folder from wherewher its installed (/usr/local/Toolchains probably) to /Library/Developer/Toolchains
    3. Restart Xcode, you will see a Toolchains option in the Xcode menu.

    A particular issue I run into is that clang complains about "can't use -o option with multiple output files". This was because at the time of writing this Apple's clang has a new option that was missing in trunk. To fix this, disable the Index-While-Building function in your project settings.

    0 讨论(0)
  • 2021-01-04 21:22

    The easiest option (also the easiest to reverse) is to add the CC build flag. Go to your project's or target's build settings, and choose Editor --> Add Build Setting --> Add User-Defined Setting from the menu.

    Adding custom build flags

    Name the flag CC, and set the value to the path to your Clang binary.

    Setting the <code>CC</code> flag

    You can choose whether you want to use this compiler for all builds, or just debug builds (this makes sense when you use experimental and/or self-modified versions of Clang, for instance).

    Note that for features like autocompletion, symbolic search etc., Xcode does not use the Clang binary but other LLVM libraries distributed with Xcode. I've described how to replace those in another post (which is more or less the same approach that you took). By only changing the Clang version, you may get different warnings after compiling than those shown in the editor while typing.

    0 讨论(0)
提交回复
热议问题