configure.host: Add case statement to support generic port properties.
* configure.host: Add case statement to support generic port properties. Add *-*-freebsd* section. From-SVN: r51896
This commit is contained in:
parent
f74761cd7e
commit
c090488760
2 changed files with 24 additions and 5 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2002-03-26 Loren J. Rittle <ljrittle@acm.org>
|
||||||
|
|
||||||
|
* configure.host: Add case statement to support generic port
|
||||||
|
properties. Add *-*-freebsd* section.
|
||||||
|
|
||||||
2002-04-04 Mark Wielaard <mark@klomp.org>
|
2002-04-04 Mark Wielaard <mark@klomp.org>
|
||||||
|
|
||||||
* mauve-libgcj: Add JLS1.0 and JLS1.1 tags, ignore Character.unicode
|
* mauve-libgcj: Add JLS1.0 and JLS1.1 tags, ignore Character.unicode
|
||||||
|
|
|
@ -60,6 +60,7 @@ DIVIDESPEC=-fuse-divide-subroutine
|
||||||
EXCEPTIONSPEC=-fnon-call-exceptions
|
EXCEPTIONSPEC=-fnon-call-exceptions
|
||||||
CHECKREFSPEC=
|
CHECKREFSPEC=
|
||||||
|
|
||||||
|
# This case statement supports per-CPU defaults.
|
||||||
case "${host}" in
|
case "${host}" in
|
||||||
mips-tx39-*|mipstx39-unknown-*)
|
mips-tx39-*|mipstx39-unknown-*)
|
||||||
libgcj_flags="${libgcj_flags} -G 0"
|
libgcj_flags="${libgcj_flags} -G 0"
|
||||||
|
@ -87,16 +88,12 @@ case "${host}" in
|
||||||
libgcj_interpreter=yes
|
libgcj_interpreter=yes
|
||||||
enable_hash_synchronization_default=yes
|
enable_hash_synchronization_default=yes
|
||||||
;;
|
;;
|
||||||
powerpc*-linux*)
|
powerpc*-*)
|
||||||
sysdeps_dir=powerpc
|
sysdeps_dir=powerpc
|
||||||
libgcj_interpreter=yes
|
libgcj_interpreter=yes
|
||||||
enable_hash_synchronization_default=yes
|
enable_hash_synchronization_default=yes
|
||||||
slow_pthread_self=yes
|
slow_pthread_self=yes
|
||||||
;;
|
;;
|
||||||
powerpc*-darwin*)
|
|
||||||
sysdeps_dir=powerpc
|
|
||||||
libgcj_interpreter=yes
|
|
||||||
;;
|
|
||||||
sparc-*)
|
sparc-*)
|
||||||
;;
|
;;
|
||||||
ia64-*)
|
ia64-*)
|
||||||
|
@ -117,6 +114,23 @@ case "${host}" in
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
# This case statement supports generic port properties and may refine
|
||||||
|
# the above per-CPU defaults. Note: If your OS does not implement
|
||||||
|
# MD_FALLBACK_FRAME_STATE_FOR, then you may want to set CHECKREFSPEC,
|
||||||
|
# DIVIDESPEC (to fix >20 test cases) and EXCEPTIONSPEC (to reduce EH
|
||||||
|
# bloat only) here.
|
||||||
|
case "${host}" in
|
||||||
|
*-*-darwin*)
|
||||||
|
enable_hash_synchronization_default=no
|
||||||
|
slow_pthread_self=
|
||||||
|
;;
|
||||||
|
*-*-freebsd*)
|
||||||
|
DIVIDESPEC=-fuse-divide-subroutine
|
||||||
|
CHECKREFSPEC=-fcheck-references
|
||||||
|
slow_pthread_self=
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
libgcj_cflags="${libgcj_cflags} ${libgcj_flags}"
|
libgcj_cflags="${libgcj_cflags} ${libgcj_flags}"
|
||||||
libgcj_cxxflags="${libgcj_cxxflags} ${libgcj_flags}"
|
libgcj_cxxflags="${libgcj_cxxflags} ${libgcj_flags}"
|
||||||
libgcj_javaflags="${libgcj_javaflags} ${libgcj_flags}"
|
libgcj_javaflags="${libgcj_javaflags} ${libgcj_flags}"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue