From ef0096f7003a94c4f35037cffac1801facc320d5 Mon Sep 17 00:00:00 2001 From: John Criswell Date: Fri, 8 Aug 2003 22:36:30 +0000 Subject: [PATCH] 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 --- docs/GettingStarted.html | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html index 0aaecb145cc..c329a690529 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 ., then the object files will be placed within the source code tree. If left unspecified, the default value is - .. + the following: + (See the Section on The Location of LLVM Object Files for more information.) @@ -632,7 +641,19 @@

If OBJ_ROOT 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 OBJ_ROOT is set to + ., in which case object files are placed within the LLVM source + tree). +

+ +

+ Note that + --with-objroot=. + and + --with-objroot=`pwd` + 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.