diff --git a/clang/www/get_started.html b/clang/www/get_started.html index 48ce7f8edbbcf..dda914a46904e 100755 --- a/clang/www/get_started.html +++ b/clang/www/get_started.html @@ -2,7 +2,7 @@ "http://www.w3.org/TR/html4/strict.dtd"> - + Clang - Getting Started @@ -125,7 +125,7 @@

Using Visual Studio

project files. Get it from: https://cmake.org/download/ -
  • Visual Studio 2017 or later
  • +
  • Visual Studio 2019 16.7 or later
  • Python. It is used to run the clang test suite. Get it from: https://www.python.org/download/
  • @@ -156,8 +156,8 @@

    Using Visual Studio

  • mkdir build (for building without polluting the source dir)
  • cd build
  • - If you are using Visual Studio 2017: - cmake -DLLVM_ENABLE_PROJECTS=clang -G "Visual Studio 15 2017" -A x64 -Thost=x64 ..\llvm
    + If you are using Visual Studio 2019: + cmake -DLLVM_ENABLE_PROJECTS=clang -G "Visual Studio 16 2019" -A x64 -Thost=x64 ..\llvm
    -Thost=x64 is required, since the 32-bit linker will run out of memory.
  • To generate x86 binaries instead of x64, pass -A Win32.