aboutsummaryrefslogtreecommitdiffstats
path: root/docs/GettingStarted.html
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2003-08-08 22:36:30 +0000
committerJohn Criswell <criswell@uiuc.edu>2003-08-08 22:36:30 +0000
commitef0096f7003a94c4f35037cffac1801facc320d5 (patch)
tree80c803d6293bd8b2b039b11d75d3758faa2e3ca0 /docs/GettingStarted.html
parent955c1be529728a27ff952eb5f6d7ab9e5d6b5f86 (diff)
downloadexternal_llvm-ef0096f7003a94c4f35037cffac1801facc320d5.zip
external_llvm-ef0096f7003a94c4f35037cffac1801facc320d5.tar.gz
external_llvm-ef0096f7003a94c4f35037cffac1801facc320d5.tar.bz2
Updated for the 1.1 pre-release.
Attempted to explain how OBJ_ROOT=. and OBJ_ROOT=`pwd` are not the same thing. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7703 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/GettingStarted.html')
-rw-r--r--docs/GettingStarted.html25
1 files changed, 23 insertions, 2 deletions
diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html
index 0aaecb1..c329a69 100644
--- a/docs/GettingStarted.html
+++ b/docs/GettingStarted.html
@@ -496,7 +496,16 @@
object files, libraries, and executables should be placed.
If this is set to <tt>.</tt>, then the object files will be placed
within the source code tree. If left unspecified, the default value is
- <tt>.</tt>.
+ the following:
+ <ul>
+ <li>
+ If the USER environment variable is specified and the directory
+ <tt>/localhome/$USER</tt> exists, then the default value is
+ <tt>/localhome/$USER</tt>.
+
+ <li>
+ Otherwise, the default value is <tt>.</tt>.
+ </ul>
(See the Section on <a href=#objfiles>
The Location of LLVM Object Files</a>
for more information.)
@@ -632,7 +641,19 @@
<p>
If <i>OBJ_ROOT</i> is specified, then the build system will create a
directory tree underneath it that resembles the source code's pathname
- relative to your home directory.
+ relative to your home directory (unless <i>OBJ_ROOT</i> is set to
+ <tt>.</tt>, in which case object files are placed within the LLVM source
+ tree).
+ </p>
+
+ <p>
+ Note that
+ <i>--with-objroot</i>=<tt>.</tt>
+ and
+ <i>--with-objroot</i>=<tt>`pwd`</tt>
+ are not the same thing. The former will simply place object files within
+ the source tree, while the latter will set the location of object files
+ using the source tree's relative path from the home directory.
</p>
<p>