diff options
author | Mark Mitchell <mark@codesourcery.com> | 2005-07-26 15:56:56 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2005-07-26 15:56:56 +0000 |
commit | 526635cb4b12c94cda663ae1ba5634e781b654c7 (patch) | |
tree | 0284f0554e4dd176bea11df5e10b97ef13c79945 /gcc | |
parent | c14ff86e9ca385d8e62bbecac8ebd439171e5ced (diff) | |
download | gcc-526635cb4b12c94cda663ae1ba5634e781b654c7.zip gcc-526635cb4b12c94cda663ae1ba5634e781b654c7.tar.gz gcc-526635cb4b12c94cda663ae1ba5634e781b654c7.tar.bz2 |
install.texi (--with-build-sysroot): Fix grammatical error.
* doc/install.texi (--with-build-sysroot): Fix grammatical error.
Clarify use of "build" in name.
* Makefile.tpl (SYSROOT_CFLAGS_FOR_TARGET): New variable.
(CFLAGS_FOR_TARGET): Use it.
(CXXFLAGS_FOR_TARGET): Likewise.
* Makefile.in: Regenerated.
* configure.in (--with-build-sysroot): New option.
* configure: Regenerated.
From-SVN: r102389
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/doc/install.texi | 10 |
2 files changed, 12 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8eed435..6031f3e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-07-26 Mark Mitchell <mark@codesourcery.com> + + * doc/install.texi (--with-build-sysroot): Fix grammatical error. + Clarify use of "build" in name. + 2005-07-26 Aldy Hernandez <aldyh@redhat.com> * doc/extend.texi (Raw read/write Functions): New section. diff --git a/gcc/doc/install.texi b/gcc/doc/install.texi index 2baf003..56888f1 100644 --- a/gcc/doc/install.texi +++ b/gcc/doc/install.texi @@ -1231,12 +1231,16 @@ the GCC binaries if the installation tree is moved. @item --with-build-sysroot @itemx --with-build-sysroot=@var{dir} Tells GCC to consider @var{dir} as the system root (see -@option{--with-sysroot}) while building the compiler itself, instead of +@option{--with-sysroot}) while building target libraries, instead of the directory specified with @option{--with-sysroot}. This option is only useful when you are already using @option{--with-sysroot}. You -can use @option{--with-build-sysroot} when you are configure with +can use @option{--with-build-sysroot} when you are configuring with @option{--prefix} set to a directory that is different from the one in -which you are installing GCC and your target libraries. +which you are installing GCC and your target libraries. + +This option affects the system root for the compiler used to build +target libraries (which runs on the build system); it does not affect +the compiler which is used to build GCC itself. @item --with-headers @itemx --with-headers=@var{dir} |