Skip to content

Commit ec70337

Browse files
committed
Correct minimum Visual Studio version requirements
We bumped the requirements to MSVC 2019 16.7 in 2022: https://discourse.llvm.org/t/rfc-increasing-the-gcc-and-clang-requirements-to-support-c-17-in-llvm/59983 but missed updating these docs.
1 parent 65331da commit ec70337

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

clang/www/get_started.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"http://www.w3.org/TR/html4/strict.dtd">
33
<html>
44
<head>
5-
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
5+
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
66
<title>Clang - Getting Started</title>
77
<link type="text/css" rel="stylesheet" href="menu.css">
88
<link type="text/css" rel="stylesheet" href="content.css">
@@ -125,7 +125,7 @@ <h3 id="buildWindows">Using Visual Studio</h3>
125125
project files. Get it from:
126126
<a href="https://cmake.org/download/">
127127
https://cmake.org/download/</a></li>
128-
<li><b>Visual Studio 2017 or later</b></li>
128+
<li><b>Visual Studio 2019 16.7 or later</b></li>
129129
<li><b>Python</b>. It is used to run the clang test suite. Get it from:
130130
<a href="https://www.python.org/download/">
131131
https://www.python.org/download/</a></li>
@@ -156,8 +156,8 @@ <h3 id="buildWindows">Using Visual Studio</h3>
156156
<li><tt>mkdir build</tt> (for building without polluting the source dir)</li>
157157
<li><tt>cd build</tt></li>
158158
<li>
159-
If you are using Visual Studio 2017:
160-
<tt>cmake -DLLVM_ENABLE_PROJECTS=clang -G "Visual Studio 15 2017" -A x64 -Thost=x64 ..\llvm</tt><br/>
159+
If you are using Visual Studio 2019:
160+
<tt>cmake -DLLVM_ENABLE_PROJECTS=clang -G "Visual Studio 16 2019" -A x64 -Thost=x64 ..\llvm</tt><br/>
161161
<tt>-Thost=x64</tt> is required, since the 32-bit linker will run out of memory.
162162
</li>
163163
<li>To generate x86 binaries instead of x64, pass <tt>-A Win32</tt>.</li>

0 commit comments

Comments
 (0)