Merge from gcc:
2007-09-19 Benjamin Kosnik <bkoz@redhat.com> * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Move libgomp before libstdc++. * Makefile.def: Add libgomp config as a maybe dependency for libstdc++. * configure: Regenerate. * Makefile.in: Regenerate.
This commit is contained in:
parent
2d2e75dd67
commit
a8c17d427e
|
@ -3,6 +3,14 @@
|
||||||
* configure.ac (mipsisa*-*-elfoabi*): New stanza.
|
* configure.ac (mipsisa*-*-elfoabi*): New stanza.
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
|
||||||
|
2007-09-19 Benjamin Kosnik <bkoz@redhat.com>
|
||||||
|
|
||||||
|
* configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Move libgomp before
|
||||||
|
libstdc++.
|
||||||
|
* Makefile.def: Add libgomp config as a maybe dependency for libstdc++.
|
||||||
|
* configure: Regenerate.
|
||||||
|
* Makefile.in: Regenerate.
|
||||||
|
|
||||||
2007-09-17 Andreas Schwab <schwab@suse.de>
|
2007-09-17 Andreas Schwab <schwab@suse.de>
|
||||||
|
|
||||||
* configure.ac: Raise minimum makeinfo version to 4.6.
|
* configure.ac: Raise minimum makeinfo version to 4.6.
|
||||||
|
|
|
@ -486,6 +486,7 @@ dependencies = { module=configure-target-libobjc; on=configure-target-boehm-gc;
|
||||||
dependencies = { module=all-target-libobjc; on=all-target-libiberty; };
|
dependencies = { module=all-target-libobjc; on=all-target-libiberty; };
|
||||||
dependencies = { module=all-target-libobjc; on=all-target-boehm-gc; };
|
dependencies = { module=all-target-libobjc; on=all-target-boehm-gc; };
|
||||||
dependencies = { module=all-target-libstdc++-v3; on=all-target-libiberty; };
|
dependencies = { module=all-target-libstdc++-v3; on=all-target-libiberty; };
|
||||||
|
dependencies = { module=configure-target-libstdc++-v3; on=configure-target-libgomp; };
|
||||||
|
|
||||||
// Target modules in the 'src' repository.
|
// Target modules in the 'src' repository.
|
||||||
lang_env_dependencies = { module=examples; };
|
lang_env_dependencies = { module=examples; };
|
||||||
|
|
|
@ -51881,6 +51881,7 @@ configure-target-libobjc: maybe-configure-target-boehm-gc
|
||||||
all-target-libobjc: maybe-all-target-libiberty
|
all-target-libobjc: maybe-all-target-libiberty
|
||||||
all-target-libobjc: maybe-all-target-boehm-gc
|
all-target-libobjc: maybe-all-target-boehm-gc
|
||||||
all-target-libstdc++-v3: maybe-all-target-libiberty
|
all-target-libstdc++-v3: maybe-all-target-libiberty
|
||||||
|
configure-target-libstdc++-v3: maybe-configure-target-libgomp
|
||||||
all-target-libgloss: maybe-configure-target-newlib
|
all-target-libgloss: maybe-configure-target-newlib
|
||||||
all-target-winsup: maybe-all-target-libiberty
|
all-target-winsup: maybe-all-target-libiberty
|
||||||
all-target-winsup: maybe-all-target-libtermcap
|
all-target-winsup: maybe-all-target-libtermcap
|
||||||
|
|
|
@ -1865,6 +1865,7 @@ target_libraries="target-libgcc \
|
||||||
target-libiberty \
|
target-libiberty \
|
||||||
target-libgloss \
|
target-libgloss \
|
||||||
target-newlib \
|
target-newlib \
|
||||||
|
target-libgomp \
|
||||||
target-libstdc++-v3 \
|
target-libstdc++-v3 \
|
||||||
target-libmudflap \
|
target-libmudflap \
|
||||||
target-libssp \
|
target-libssp \
|
||||||
|
@ -1872,8 +1873,7 @@ target_libraries="target-libgcc \
|
||||||
target-boehm-gc \
|
target-boehm-gc \
|
||||||
${libgcj} \
|
${libgcj} \
|
||||||
target-libobjc \
|
target-libobjc \
|
||||||
target-libada \
|
target-libada"
|
||||||
target-libgomp"
|
|
||||||
|
|
||||||
# these tools are built using the target libraries, and are intended to
|
# these tools are built using the target libraries, and are intended to
|
||||||
# run only in the target environment
|
# run only in the target environment
|
||||||
|
|
|
@ -176,6 +176,7 @@ target_libraries="target-libgcc \
|
||||||
target-libiberty \
|
target-libiberty \
|
||||||
target-libgloss \
|
target-libgloss \
|
||||||
target-newlib \
|
target-newlib \
|
||||||
|
target-libgomp \
|
||||||
target-libstdc++-v3 \
|
target-libstdc++-v3 \
|
||||||
target-libmudflap \
|
target-libmudflap \
|
||||||
target-libssp \
|
target-libssp \
|
||||||
|
@ -183,8 +184,7 @@ target_libraries="target-libgcc \
|
||||||
target-boehm-gc \
|
target-boehm-gc \
|
||||||
${libgcj} \
|
${libgcj} \
|
||||||
target-libobjc \
|
target-libobjc \
|
||||||
target-libada \
|
target-libada"
|
||||||
target-libgomp"
|
|
||||||
|
|
||||||
# these tools are built using the target libraries, and are intended to
|
# these tools are built using the target libraries, and are intended to
|
||||||
# run only in the target environment
|
# run only in the target environment
|
||||||
|
|
Loading…
Reference in New Issue