[PATCH] D52843: Update Clang Windows getting started docs

Stephen Kelly via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Wed Oct 3 14:52:00 PDT 2018


steveire added inline comments.


================
Comment at: clang/www/get_started.html:197
+    <li>If you are using Visual Studio 2017:
+      <tt>cmake -G "Visual Studio 15 2017 Win64" ..\llvm</tt></li>
+    <li>This will generate x64 binaries by default, which should perform better.
----------------
smeenai wrote:
> Does the Win64 generator automatically imply `-Thost=x64`?
Nope.

And using `"Visual Studio 15 2017 Win64"` is deprecated. Use `-G "Visual Studio 15 2017" -A x64` instead as per https://cmake.org/cmake/help/latest/generator/Visual%20Studio%2015%202017.html


https://reviews.llvm.org/D52843





More information about the cfe-commits mailing list