summaryrefslogtreecommitdiffstats
path: root/www
diff options
context:
space:
mode:
authorJohn Thompson <John.Thompson.JTSoftware@gmail.com>2011-04-06 18:22:12 +0000
committerJohn Thompson <John.Thompson.JTSoftware@gmail.com>2011-04-06 18:22:12 +0000
commit13eb5657f9847990c01339de5d96e43d36a6305e (patch)
treeab2b6d96c1a9fd23f55c21781ba0e1f651b2042b /www
parent01cb307f0b84a368cdbc0738d6680aab8ed7423f (diff)
Added link to LLVM cmake page in Visual Studio section.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@129013 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'www')
-rw-r--r--www/get_started.html7
1 files changed, 7 insertions, 0 deletions
diff --git a/www/get_started.html b/www/get_started.html
index 6176e9a910..f8745f96bc 100644
--- a/www/get_started.html
+++ b/www/get_started.html
@@ -157,6 +157,13 @@ Visual Studio:</p>
<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>