From llvm's site, I can dowload the prebuilt binary of LLVM 4.0
. After having installed the prebuilt binary on Windows with Visual Studio 2017
, I can easily switch the compiler between VC++
and Clang 4.0
via Platform Toolset
options.
From Getting Started with the LLVM System using Microsoft Visual Studio, I can also build LLVM
toolchain (result in many executables) on Windows. However, I don't know how to make a prebuilt installer and get the same effects as the official version provided.
Because llvm's site doesn't provide prebuilt binary for LLVM 5.0 (SVN)
, so I have to do it myself.
Is there a tutorial telling me how to build the installer of LLVM 5.0 (SVN)
from LLVM
's source code?
Thanks in advance.
==================
Why LLVM 5.0
The following C++17's features are available in LLVM 5.0
only:
Template argument deduction for class templates
constexpr lambda expressions