[cfe-commits] r129013 - /cfe/trunk/www/get_started.html
John Thompson
John.Thompson.JTSoftware at gmail.com
Wed Apr 6 11:22:12 PDT 2011
Author: jtsoftware
Date: Wed Apr 6 13:22:12 2011
New Revision: 129013
URL: http://llvm.org/viewvc/llvm-project?rev=129013&view=rev
Log:
Added link to LLVM cmake page in Visual Studio section.
Modified:
cfe/trunk/www/get_started.html
Modified: cfe/trunk/www/get_started.html
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/www/get_started.html?rev=129013&r1=129012&r2=129013&view=diff
==============================================================================
--- cfe/trunk/www/get_started.html (original)
+++ cfe/trunk/www/get_started.html Wed Apr 6 13:22:12 2011
@@ -157,6 +157,13 @@
<li>If you are using Visual Studio 2005: <tt>cmake -G "Visual Studio 8 2005" ..\llvm</tt></li>
<li>Or if you are using Visual Studio 2008: <tt>cmake -G "Visual Studio 9 2008" ..\llvm</tt></li>
<li>Or if you are using Visual Studio 2010: <tt>cmake -G "Visual Studio 10" ..\llvm</tt></li>
+ <li>By default, cmake will target LLVM to X86. If you want all targets
+ (needed if you want to run the LLVM tests), add the <tt>-DLLVM_TARGETS_TO_BUILD=all</tt> option to the
+ cmake command line. Or specify a target from the LLVM_TARGETS_TO_BUILD
+ definition in CMakeLists.txt.</li>
+ <li>See the <a href="http://www.llvm.org/docs/CMake.html">LLVM CMake guide</a> for
+ more information on other configuration options for cmake.</li>
+</li>
<li>The above, if successful, will have created an LLVM.sln file in the
llvm directory.
</ul>
More information about the cfe-commits
mailing list