jhuber6 wrote:

Right, it used to just grab `clang` from the user's path and use it instead of 
the configured compiler. Okay, so if you do this it will configure clang 
automatically as far as I know.
```
cmake ../llvm -DLLVM_ENABLE_RUNTIMES=libclc -DLLVM_ENABLE_PROJECTS=clang
```
But if you do this you'd need to set it manually.
```
cmake ../runtimes -DLLVM_ENABLE_RUNTIMES=libclc 
-DCMAKE_C_COMPILER=/path/to/clang -DCMAKE_CXX_COMPILER=/path/to/clang++
```
Does this not work in your case?

https://github.com/llvm/llvm-project/pull/186726
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to