diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html
index e4d0438e444..70c59124790 100644
--- a/docs/GettingStarted.html
+++ b/docs/GettingStarted.html
@@ -687,7 +687,7 @@ compressed with the gzip program.
If you have access to our Subversion repository, you can get a fresh copy of
-the entire source code. All you need to do is check it out from Subvresion as
+the entire source code. All you need to do is check it out from Subversion as
follows:
@@ -708,6 +708,7 @@ revision), you can checkout it from the 'tags' directory (instead of
subdirectories of the 'tags' directory:
+- Release 2.5: RELEASE_25
- Release 2.4: RELEASE_24
- Release 2.3: RELEASE_23
- Release 2.2: RELEASE_22
@@ -848,9 +849,11 @@ script to configure the build system:
- --enable-optimized
-
- Enables optimized compilation by default (debugging symbols are removed
- and GCC optimization flags are enabled). The default is to use an
- unoptimized build (also known as a debug build).
+ Enables optimized compilation (debugging symbols are removed
+ and GCC optimization flags are enabled). Note that this is the default
+ setting if you are using the LLVM distribution. The default behavior
+ of an Subversion checkout is to use an unoptimized build (also known as a
+ debug build).
- --enable-debug-runtime
@@ -918,10 +921,12 @@ builds:
- Debug Builds
-
- These builds are the default when one types gmake (unless the
- --enable-optimized option was used during configuration). The
- build system will compile the tools and libraries with debugging
- information.
+ These builds are the default when one is using an Subversion checkout and
+ types gmake (unless the --enable-optimized option was
+ used during configuration). The build system will compile the tools and
+ libraries with debugging information. To get a Debug Build using the
+ LLVM distribution the --disable-optimized option must be passed
+ to configure.
- Release (Optimized) Builds
@@ -931,6 +936,7 @@ builds:
gmake command line. For these builds, the build system will
compile the tools and libraries with GCC optimizations enabled and strip
debugging information from the libraries and executables it generates.
+ Note that Release Builds are default when using an LLVM distribution.
- Profile Builds
@@ -1007,6 +1013,11 @@ declaring variables on the command line. The following are some examples:
-
Perform a Release (Optimized) build without assertions enabled.
+
+ - gmake ENABLE_OPTIMIZED=0
+
-
+ Perform a Debug build.
+
- gmake ENABLE_PROFILING=1
-