Where is the llvm-config system on OS X 10.10 Yosemite?

If I am not mistaken, the compiler, etc., installed as part of Xcode, will use llvm. But I can not find the llvm-config binary to create the correct flags to compile the command line for the llvm target. Where is such a thing on OS X?

I know that I can install the new llvm through MacPorts or Homebrew, but I do not want to duplicate what is already there; I just want to get the system configuration.

+4
source share
1 answer

llvm-config is used to create programs that will be associated with LLVM. Xcode does not distribute LLVM libraries and does not support binding to clang itself, so llvm-config is useless in this context. What is your use case?

+3
source

Source: https://habr.com/ru/post/1610338/


All Articles