diff options
Diffstat (limited to 'www/get_started.html')
-rw-r--r-- | www/get_started.html | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/www/get_started.html b/www/get_started.html index 54f7442..f8745f96 100644 --- a/www/get_started.html +++ b/www/get_started.html @@ -129,15 +129,15 @@ Visual Studio:</p> <li><b>Python</b>. This is needed only if you will be running the tests (which is essential, if you will be developing for clang). Get it from: - <a href="http://www.python.org/download"> - http://www.python.org/download</a></li> + <a href="http://www.python.org/download/"> + http://www.python.org/download/</a></li> <li><b>GnuWin32 tools</b> These are also necessary for running the tests. (Note that the grep from MSYS or Cygwin doesn't work with the tests because of embedded double-quotes in the search strings. The GNU grep does work in this case.) - Get them from <a href="http://getgnuwin32.sourceforge.net"> - http://getgnuwin32.sourceforge.net</a>.</li> + Get them from <a href="http://getgnuwin32.sourceforge.net/"> + http://getgnuwin32.sourceforge.net/</a>.</li> </ul> <li>Checkout LLVM:</li> @@ -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> |