1999-04-07 16:42:40 +02:00
|
|
|
# configure.host
|
|
|
|
|
|
|
|
# This shell script handles all host based configuration for libgcj.
|
|
|
|
# It sets various shell variables based on the the host and the
|
|
|
|
# configuration options. You can modify this shell script without
|
|
|
|
# needing to rerun autoconf.
|
|
|
|
|
|
|
|
# This shell script should be invoked as
|
|
|
|
# . configure.host
|
|
|
|
# If it encounters an error, it will exit with a message.
|
|
|
|
|
|
|
|
# It uses the following shell variables:
|
|
|
|
# host The configuration host
|
|
|
|
# host_cpu The configuration host CPU
|
|
|
|
# target_optspace --enable-target-optspace ("yes", "no", "")
|
|
|
|
|
|
|
|
# It sets the following shell variables:
|
|
|
|
# libgcj_cflags Special CFLAGS to use when building
|
|
|
|
# libgcj_cxxflags Special CXXFLAGS to use when building
|
|
|
|
# libgcj_javaflags Special JAVAFLAGS to use when building
|
2002-03-10 04:53:16 +01:00
|
|
|
# libgcj_interpreter If the bytecode interpreter supports this platform.
|
|
|
|
# enable_java_net_default If java.net native code should be enabled by
|
|
|
|
# default.
|
|
|
|
# enable_hash_synchronization_default If hash synchronization should be
|
|
|
|
# enabled by default.
|
|
|
|
# sysdeps_dir Directory containing system-dependent headers
|
|
|
|
# slow_pthread_self The synchronization code should try to avoid
|
|
|
|
# pthread_self calls by caching thread IDs in a hashtable
|
2002-04-12 03:14:33 +02:00
|
|
|
# can_unwind_signal Set to "yes" if the EH unwinder supports throwing
|
|
|
|
# from a signal handler.
|
1999-04-07 16:42:40 +02:00
|
|
|
|
|
|
|
libgcj_flags=
|
|
|
|
libgcj_cflags=
|
|
|
|
libgcj_cxxflags=
|
|
|
|
libgcj_javaflags=
|
2000-01-09 23:25:54 +01:00
|
|
|
libgcj_interpreter=
|
2001-05-24 07:40:37 +02:00
|
|
|
enable_java_net_default=yes
|
|
|
|
enable_hash_synchronization_default=no
|
2002-03-10 04:53:16 +01:00
|
|
|
sysdeps_dir=generic
|
|
|
|
slow_pthread_self=
|
2002-04-12 03:14:33 +02:00
|
|
|
can_unwind_signal=no
|
1999-04-07 16:42:40 +02:00
|
|
|
|
|
|
|
case "${target_optspace}:${host}" in
|
|
|
|
yes:*)
|
|
|
|
libgcj_flags="${libgcj_flags} -Os"
|
|
|
|
;;
|
|
|
|
:m32r-* | :d10v-* | :d30v-*)
|
|
|
|
libgcj_flags="${libgcj_flags} -Os"
|
|
|
|
;;
|
|
|
|
no:* | :*)
|
|
|
|
# Nothing.
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
AM_RUNTESTFLAGS=
|
|
|
|
|
|
|
|
# Set any host dependent compiler flags.
|
|
|
|
# THIS TABLE IS SORTED. KEEP IT THAT WAY.
|
|
|
|
|
|
|
|
echo "$target"
|
|
|
|
|
1999-07-21 17:11:56 +02:00
|
|
|
DIVIDESPEC=-fuse-divide-subroutine
|
2001-05-01 19:45:11 +02:00
|
|
|
EXCEPTIONSPEC=-fnon-call-exceptions
|
2002-03-27 17:41:44 +01:00
|
|
|
CHECKREFSPEC=
|
1999-07-21 17:11:56 +02:00
|
|
|
|
2002-04-05 06:17:11 +02:00
|
|
|
# This case statement supports per-CPU defaults.
|
1999-04-07 16:42:40 +02:00
|
|
|
case "${host}" in
|
2002-09-28 14:15:18 +02:00
|
|
|
arm*-elf | strongarm*-elf | xscale*-elf)
|
|
|
|
with_libffi_default=no
|
|
|
|
PROCESS=Ecos
|
|
|
|
FILE=Posix
|
|
|
|
CHECKREFSPEC=-fcheck-references
|
|
|
|
EXCEPTIONSPEC=
|
|
|
|
enable_java_net_default=no
|
|
|
|
enable_getenv_properties_default=no
|
|
|
|
enable_main_args_default=no
|
|
|
|
;;
|
1999-04-07 16:42:40 +02:00
|
|
|
mips-tx39-*|mipstx39-unknown-*)
|
|
|
|
libgcj_flags="${libgcj_flags} -G 0"
|
|
|
|
LDFLAGS="$LDFLAGS -Tjmr3904dram.ld"
|
1999-07-21 17:11:56 +02:00
|
|
|
AM_RUNTESTFLAGS="--target_board=jmr3904-sim"
|
1999-09-29 00:16:57 +02:00
|
|
|
# Use "Ecos" processes since they are a no-op.
|
|
|
|
PROCESS=Ecos
|
2002-03-16 01:37:21 +01:00
|
|
|
FILE=Posix
|
1999-10-02 02:19:01 +02:00
|
|
|
enable_java_net_default=no
|
1999-10-15 08:07:41 +02:00
|
|
|
enable_getenv_properties_default=no
|
1999-04-07 16:42:40 +02:00
|
|
|
;;
|
2000-02-13 19:07:09 +01:00
|
|
|
i686-*|i586-*|i486-*|i386-*)
|
2002-03-10 04:53:16 +01:00
|
|
|
sysdeps_dir=i386
|
2000-03-05 23:26:30 +01:00
|
|
|
libgcj_flags="${libgcj_flags} -ffloat-store"
|
2000-01-09 23:25:54 +01:00
|
|
|
libgcj_interpreter=yes
|
2000-03-05 23:26:30 +01:00
|
|
|
libgcj_cxxflags="-D__NO_MATH_INLINES"
|
|
|
|
libgcj_cflags="-D__NO_MATH_INLINES"
|
2002-03-23 17:16:46 +01:00
|
|
|
DIVIDESPEC=-fno-use-divide-subroutine
|
2001-05-24 07:40:37 +02:00
|
|
|
enable_hash_synchronization_default=yes
|
2002-03-10 04:53:16 +01:00
|
|
|
slow_pthread_self=yes
|
1999-04-07 16:42:40 +02:00
|
|
|
;;
|
2002-07-19 16:41:15 +02:00
|
|
|
x86_64-*)
|
|
|
|
sysdeps_dir=x86-64
|
|
|
|
libgcj_flags="${libgcj_flags} -ffloat-store"
|
|
|
|
libgcj_interpreter=no
|
|
|
|
libgcj_cxxflags="-D__NO_MATH_INLINES"
|
|
|
|
libgcj_cflags="-D__NO_MATH_INLINES"
|
|
|
|
DIVIDESPEC=-fno-use-divide-subroutine
|
|
|
|
enable_hash_synchronization_default=yes
|
|
|
|
slow_pthread_self=yes
|
|
|
|
;;
|
2000-12-11 03:30:14 +01:00
|
|
|
alpha*-*)
|
2002-03-10 04:53:16 +01:00
|
|
|
sysdeps_dir=alpha
|
2001-01-28 07:59:00 +01:00
|
|
|
libgcj_flags="${libgcj_flags} -mieee"
|
2000-12-10 08:12:32 +01:00
|
|
|
libgcj_interpreter=yes
|
2001-07-23 05:51:17 +02:00
|
|
|
enable_hash_synchronization_default=yes
|
2000-12-10 08:12:32 +01:00
|
|
|
;;
|
2002-07-27 01:54:28 +02:00
|
|
|
powerpc64*-*)
|
|
|
|
# libffi not ported.
|
|
|
|
with_libffi_default=no
|
|
|
|
libgcj_interpreter=no
|
|
|
|
libgcj_flags="${libgcj_flags} -mminimal-toc"
|
|
|
|
# this may not be correct
|
|
|
|
sysdeps_dir=powerpc
|
|
|
|
enable_hash_synchronization_default=yes
|
|
|
|
slow_pthread_self=yes
|
|
|
|
;;
|
2002-04-05 06:17:11 +02:00
|
|
|
powerpc*-*)
|
2002-03-10 04:53:16 +01:00
|
|
|
sysdeps_dir=powerpc
|
2001-04-02 21:51:40 +02:00
|
|
|
libgcj_interpreter=yes
|
2002-03-10 04:53:16 +01:00
|
|
|
enable_hash_synchronization_default=yes
|
|
|
|
slow_pthread_self=yes
|
2001-04-02 21:51:40 +02:00
|
|
|
;;
|
2002-10-08 16:57:37 +02:00
|
|
|
s390*-*)
|
|
|
|
sysdeps_dir=s390
|
|
|
|
libgcj_interpreter=yes
|
|
|
|
enable_hash_synchronization_default=yes
|
|
|
|
;;
|
1999-11-19 20:13:42 +01:00
|
|
|
sparc-*)
|
|
|
|
;;
|
2000-05-19 19:55:34 +02:00
|
|
|
ia64-*)
|
2002-03-10 04:53:16 +01:00
|
|
|
sysdeps_dir=ia64
|
2000-05-19 19:55:34 +02:00
|
|
|
libgcj_flags="${libgcj_flags} -funwind-tables"
|
|
|
|
libgcj_interpreter=yes
|
2001-05-24 07:40:37 +02:00
|
|
|
enable_hash_synchronization_default=yes
|
2000-05-19 19:55:34 +02:00
|
|
|
;;
|
2002-08-01 07:34:54 +02:00
|
|
|
sh-* | sh[34]*-*)
|
|
|
|
sysdeps_dir=sh
|
|
|
|
libgcj_flags="${libgcj_flags} -mieee"
|
|
|
|
libgcj_interpreter=yes
|
|
|
|
CHECKREFSPEC=-fcheck-references
|
|
|
|
EXCEPTIONSPEC=
|
|
|
|
enable_hash_synchronization_default=yes
|
|
|
|
;;
|
1999-04-07 16:42:40 +02:00
|
|
|
esac
|
|
|
|
|
2002-04-05 06:17:11 +02:00
|
|
|
# This case statement supports generic port properties and may refine
|
2002-04-12 03:14:33 +02:00
|
|
|
# the above per-CPU defaults. Note: If your OS implements
|
|
|
|
# MD_FALLBACK_FRAME_STATE_FOR, then you want to set can_unwind_signal
|
|
|
|
# here.
|
2002-04-05 06:17:11 +02:00
|
|
|
case "${host}" in
|
2002-04-12 03:14:33 +02:00
|
|
|
i[34567]86*-linux* | \
|
|
|
|
powerpc*-linux* | \
|
|
|
|
alpha*-linux* | \
|
2002-05-29 20:36:50 +02:00
|
|
|
s390*-linux* | \
|
2002-04-21 11:37:49 +02:00
|
|
|
sparc*-linux* | \
|
2002-07-19 16:41:15 +02:00
|
|
|
ia64-* | \
|
|
|
|
x86_64*-linux*)
|
2002-04-12 03:14:33 +02:00
|
|
|
can_unwind_signal=yes
|
|
|
|
;;
|
2002-04-05 06:17:11 +02:00
|
|
|
*-*-darwin*)
|
|
|
|
enable_hash_synchronization_default=no
|
|
|
|
slow_pthread_self=
|
|
|
|
;;
|
|
|
|
*-*-freebsd*)
|
|
|
|
slow_pthread_self=
|
|
|
|
;;
|
2002-06-10 05:50:41 +02:00
|
|
|
*-cygwin*)
|
|
|
|
# The cygwin linker doesn't do 8-byte alignment by default, so
|
|
|
|
# disable hash synchronization for now.
|
|
|
|
enable_hash_synchronization_default=no
|
|
|
|
slow_pthread_self=
|
|
|
|
;;
|
2002-04-05 06:17:11 +02:00
|
|
|
esac
|
|
|
|
|
1999-04-07 16:42:40 +02:00
|
|
|
libgcj_cflags="${libgcj_cflags} ${libgcj_flags}"
|
|
|
|
libgcj_cxxflags="${libgcj_cxxflags} ${libgcj_flags}"
|
|
|
|
libgcj_javaflags="${libgcj_javaflags} ${libgcj_flags}"
|