diff options
author | Daniel Jacobowitz <dan@codesourcery.com> | 2007-02-13 21:27:11 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@gcc.gnu.org> | 2007-02-13 21:27:11 +0000 |
commit | 291f172e6263f25c3183b3d55bab244d6f261296 (patch) | |
tree | ddbef1cc787a70793a819a4b0700898148682cbf | |
parent | 2ebdbdfb69ab15c9e0b4ea5703ae17f1cf22783c (diff) | |
download | gcc-291f172e6263f25c3183b3d55bab244d6f261296.zip gcc-291f172e6263f25c3183b3d55bab244d6f261296.tar.gz gcc-291f172e6263f25c3183b3d55bab244d6f261296.tar.bz2 |
configure.ac (target_libraries): Move libgcc before libiberty.
* configure.ac (target_libraries): Move libgcc before libiberty.
* configure: Regenerated.
From-SVN: r121893
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | configure.ac | 4 |
3 files changed, 9 insertions, 4 deletions
@@ -1,4 +1,9 @@ 2007-02-13 Daniel Jacobowitz <dan@codesourcery.com> + + * configure.ac (target_libraries): Move libgcc before libiberty. + * configure: Regenerated. + +2007-02-13 Daniel Jacobowitz <dan@codesourcery.com> Paolo Bonzini <bonzini@gnu.org> PR bootstrap/30753 @@ -1688,8 +1688,8 @@ libgcj="target-libffi \ # these libraries are built for the target environment, and are built after # the host libraries and the host tools (which may be a cross compiler) # -target_libraries="target-libiberty \ - target-libgcc \ +target_libraries="target-libgcc \ + target-libiberty \ target-libgloss \ target-newlib \ target-libstdc++-v3 \ diff --git a/configure.ac b/configure.ac index 8cbb813..087e5fe 100644 --- a/configure.ac +++ b/configure.ac @@ -158,8 +158,8 @@ libgcj="target-libffi \ # these libraries are built for the target environment, and are built after # the host libraries and the host tools (which may be a cross compiler) # -target_libraries="target-libiberty \ - target-libgcc \ +target_libraries="target-libgcc \ + target-libiberty \ target-libgloss \ target-newlib \ target-libstdc++-v3 \ |