2000-04-21 22:33:34 +02:00
|
|
|
# configure.host
|
|
|
|
|
|
|
|
# This shell script handles all host based configuration for libstdc++.
|
|
|
|
# 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:
|
2000-11-14 00:49:41 +01:00
|
|
|
# host The configuration host
|
|
|
|
# host_cpu The configuration host CPU
|
|
|
|
# target_optspace --enable-target-optspace ("yes", "no", "")
|
2000-04-21 22:33:34 +02:00
|
|
|
|
|
|
|
# It sets the following shell variables:
|
|
|
|
|
|
|
|
|
|
|
|
AM_RUNTESTFLAGS=
|
|
|
|
|
|
|
|
# Set any host dependent compiler flags.
|
|
|
|
# THIS TABLE IS SORTED. KEEP IT THAT WAY.
|
|
|
|
|
|
|
|
|
|
|
|
case "${host}" in
|
|
|
|
*)
|
2001-02-28 19:42:47 +01:00
|
|
|
;;
|
2000-04-21 22:33:34 +02:00
|
|
|
esac
|
|
|
|
|
2000-11-14 00:49:41 +01:00
|
|
|
|