summaryrefslogtreecommitdiffstats
path: root/www/get_started.html
diff options
context:
space:
mode:
Diffstat (limited to 'www/get_started.html')
-rw-r--r--www/get_started.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/www/get_started.html b/www/get_started.html
index 7756f9e..20ccaf1 100644
--- a/www/get_started.html
+++ b/www/get_started.html
@@ -85,12 +85,12 @@ follows:</p>
<li>Note: For subsequent Clang development, you can just do make at the
clang directory level.</li>
<li>It is also possible to use CMake instead of the makefiles. With CMake
- it is also possible to generate project files for several IDEs: Eclipse
+ it is possible to generate project files for several IDEs: Xcode, Eclipse
CDT4, CodeBlocks, Qt-Creator (use the CodeBlocks generator), KDevelop3.</li>
</ul>
</li>
- <li>If you intend to work on Clang C++ support, you may need to tell it how
+ <li>If you intend to use Clang's C++ support, you may need to tell it how
to find your C++ standard library headers. In general, Clang will detect
the best version of libstdc++ headers available and use them - it will
look both for system installations of libstdc++ as well as installations
@@ -138,7 +138,7 @@ Visual Studio:</p>
<li><b>Subversion</b>. Source code control program. Get it from:
<a href="http://subversion.tigris.org/getting.html">
http://subversion.tigris.org/getting.html</a></li>
- <li><b>cmake</b>. This is used for generating Visual Studio solution and
+ <li><b>CMake</b>. This is used for generating Visual Studio solution and
project files. Get it from:
<a href="http://www.cmake.org/cmake/resources/software.html">
http://www.cmake.org/cmake/resources/software.html</a></li>
@@ -169,19 +169,19 @@ Visual Studio:</p>
<li><tt>svn co http://llvm.org/svn/llvm-project/cfe/trunk clang</tt></li>
</ul>
</li>
- <li>Run cmake to generate the Visual Studio solution and project files:
+ <li>Run CMake to generate the Visual Studio solution and project files:
<ul>
<li><tt>cd ..\..</tt> (back to where you started)</li>
<li><tt>mkdir build</tt> (for building without polluting the source dir)</li>
<li><tt>cd build</tt></li>
<li>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
+ <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
+ 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>
+ more information on other configuration options for CMake.</li>
<li>The above, if successful, will have created an LLVM.sln file in the
<tt>build</tt> directory.
</ul>
OpenPOWER on IntegriCloud