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
|
|
|
|
|
|
|
|
libgcj_flags=
|
|
|
|
libgcj_cflags=
|
|
|
|
libgcj_cxxflags=
|
|
|
|
libgcj_javaflags=
|
1999-11-19 20:13:42 +01:00
|
|
|
libgcj_sjlj=
|
2000-01-09 23:25:54 +01:00
|
|
|
libgcj_interpreter=
|
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
|
|
|
|
|
1999-04-07 16:42:40 +02:00
|
|
|
case "${host}" in
|
|
|
|
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
|
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-*)
|
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"
|
1999-07-21 17:11:56 +02:00
|
|
|
DIVIDESPEC=-fno-use-divide-subroutine
|
1999-04-07 16:42:40 +02:00
|
|
|
;;
|
1999-11-19 20:13:42 +01:00
|
|
|
sparc-*)
|
|
|
|
;;
|
1999-04-07 16:42:40 +02:00
|
|
|
*)
|
1999-11-19 20:13:42 +01:00
|
|
|
libgcj_sjlj=yes
|
1999-04-07 16:42:40 +02:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
libgcj_cflags="${libgcj_cflags} ${libgcj_flags}"
|
|
|
|
libgcj_cxxflags="${libgcj_cxxflags} ${libgcj_flags}"
|
|
|
|
libgcj_javaflags="${libgcj_javaflags} ${libgcj_flags}"
|