No, we’re still getting it ready for the proper release, but that should be happening quite soon now. I don’t expect there to be large changes between now and the release.
OK. I will wait, then.
In off-JUCE tests of my code, LLVM gives me over 50% improvement in efficiency as compared to other compilers, so this will be great!
Thanks for the prompt response,
Hey there, did you manage to make it work? Was it using CMake or by changing the toolchain in Visual Studio ? Can you explain the process? I wanted to set llvm as the compiler in a project generated by the Projucer but didn’t find how to do that in VS
Thanks!
First install the LLVM tools for VS with the VS installer. Then in Configuration properties, General set Platform Toolset to LLVM (clang-cl). In the Librarian / Linker options disable Link Time Code Generation (LLVM doesn’t support it and it makes clang stop). You may need to enable extensions if you use them -I added -mavx -mfma to the compiler command line (in C/C++ options).