diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html
index 472ee10f284..273c28df057 100644
--- a/docs/GettingStarted.html
+++ b/docs/GettingStarted.html
@@ -31,7 +31,7 @@
-
LLVM can be built as a cross-compiler, however some additional steps are
- required.1 To build a cross-compiler, use
+
It is possible to cross-compile LLVM. That is, you can create LLVM
+ executables and libraries for a platform different than the one one which you
+ are compiling. To do this, a few additional steps are
+ required. 1 To cross-compile LLVM, use
these instructions:
- - Configure and build LLVM Suite as a native compiler. You will need
+
- Configure and build LLVM as a native compiler. You will need
just TableGen from that build.
- If you have $LLVM_OBJ_ROOT=$LLVM_SRC_ROOT just execute
@@ -1008,15 +1010,18 @@ that directory that is out of date.
- Copy the TableGen binary to somewhere safe (out of your build tree).
- - Configure LLVM to build as a cross-compiler. To do this, supply the
+
- Configure LLVM to build with a cross-compiler. To do this, supply the
configure script with --build and --host options that
- are different. The values of these options must be legal target triples and
- should specify a processor for which LLVM supports code generation.
+ are different. The values of these options must be legal target triples
+ that your GCC compiler supports.
- Put the saved TableGen executable into the
into $LLVM_OBJ_ROOT/{BUILD_TYPE}/bin directory (e.g. into
.../Release/bin for a Release build).
- Build LLVM as usual.
+
The result of such a build will produce executables that are not executable
+ on your build host (--build option) but can be executed on your compile host
+ (--host option).
Notes: