diff options
author | Daniel Jacobowitz <drow@false.org> | 2007-02-13 21:33:14 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2007-02-13 21:33:14 +0000 |
commit | 1277a9a0d3e14f51d5d333807124d1b0e862a40b (patch) | |
tree | 94267cd35e8767d2b0c32a1782f082a94b1e4177 | |
parent | af52f2802fe7ab656a9651114a2ec5bbb4543517 (diff) | |
download | cygnal-1277a9a0d3e14f51d5d333807124d1b0e862a40b.tar.gz cygnal-1277a9a0d3e14f51d5d333807124d1b0e862a40b.tar.bz2 cygnal-1277a9a0d3e14f51d5d333807124d1b0e862a40b.zip |
* configure.ac (target_libraries): Move libgcc before libiberty.
* configure: Regenerated.
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | configure.ac | 4 |
3 files changed, 9 insertions, 4 deletions
@@ -1,3 +1,8 @@ +2007-02-13 Daniel Jacobowitz <dan@codesourcery.com> + + * configure.ac (target_libraries): Move libgcc before libiberty. + * configure: Regenerated. + 2007-02-13 Paolo Bonzini <bonzini@gnu.org> * configure: Regenerate again? @@ -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 8cbb81356..087e5fe45 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 \ |