diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2011-01-31 05:20:17 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@gcc.gnu.org> | 2011-01-31 05:20:17 +0000 |
commit | 29a63921d9e05ea2932861ce6c1154f3ce9bbfe0 (patch) | |
tree | 5b827c5b1e4abb0059e15c7488325f2fed1d00e4 /gcc | |
parent | ef591d3f0591cfd815232664da45816682ca98eb (diff) | |
download | gcc-29a63921d9e05ea2932861ce6c1154f3ce9bbfe0.zip gcc-29a63921d9e05ea2932861ce6c1154f3ce9bbfe0.tar.gz gcc-29a63921d9e05ea2932861ce6c1154f3ce9bbfe0.tar.bz2 |
re PR libgcj/44341 (libjava cross build fails when configured with --with-gmp=)
ChangeLog:
PR libgcj/44341
* configure.ac: Discard --with-* flags for host when configuring
target libraries for cross build.
* configure: Rebuilt.
gcc/ChangeLog:
PR libgcj/44341
* doc/install.texi: Document host options discarded when cross
configuring target libraries.
From-SVN: r169430
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/doc/install.texi | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 242f4b6..5d25767 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,11 @@ 2011-01-31 Alexandre Oliva <aoliva@redhat.com> + PR libgcj/44341 + * doc/install.texi: Document host options discarded when cross + configuring target libraries. + +2011-01-31 Alexandre Oliva <aoliva@redhat.com> + Reverted: 2011-01-25 Alexandre Oliva <aoliva@redhat.com> PR debug/45136 diff --git a/gcc/doc/install.texi b/gcc/doc/install.texi index d00f831..b953d72 100644 --- a/gcc/doc/install.texi +++ b/gcc/doc/install.texi @@ -1584,6 +1584,9 @@ shared libraries can be found by the dynamic linker when building and using GCC, for example by setting the runtime shared library path variable (@env{LD_LIBRARY_PATH} on GNU/Linux and Solaris systems). +These flags are applicable to the host platform only. When building +a cross compiler, they will not be used to configure target libraries. + @item --with-ppl=@var{pathname} @itemx --with-ppl-include=@var{pathname} @itemx --with-ppl-lib=@var{pathname} @@ -1604,6 +1607,9 @@ you can explicitly specify the directory where they are installed shorthand assumptions are not correct, you can use the explicit include and lib options directly. +These flags are applicable to the host platform only. When building +a cross compiler, they will not be used to configure target libraries. + @item --with-host-libstdcxx=@var{linker-args} If you are linking with a static copy of PPL, you can use this option to specify how the linker should find the standard C++ library used |