* configure.ac (extra_ldflags_libjava): Enable -single_module only for
darwin < 8.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@103430
138bc75d-0d04-0410-961f-
82ee72b054a4
+2005-08-24 Andreas Tobler <a.tobler@schweiz.ch>
+
+ * configure.ac (extra_ldflags_libjava): Enable -single_module only for
+ darwin < 8.
+ * configure: Regenerate.
+
2005-08-23 Roman Kennke <roman@kennke.org>
* java/lang/Character.java
# extra LD Flags which are required for targets
case "${host}" in
- *-darwin*)
+*-*-darwin0-7.*)
+ # For now we have to disable it on darwin[8-9] because it slows down
+ # the linking phase. A possible bug in ld?
# on Darwin -single_module speeds up loading of the dynamic libraries.
extra_ldflags_libjava=-Wl,-single_module
;;
# extra LD Flags which are required for targets
case "${host}" in
- *-darwin*)
+*-*-darwin[0-7].*)
+ # For now we have to disable it on darwin[8-9] because it slows down
+ # the linking phase. A possible bug in ld?
# on Darwin -single_module speeds up loading of the dynamic libraries.
extra_ldflags_libjava=-Wl,-single_module
;;