diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2002-05-28 16:16:03 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-05-28 16:16:03 +0000 |
commit | 00db7afddd93b9febd88ed0a8567dc3201852b70 (patch) | |
tree | 7b14e1142a8f8cf48f311f5246aa3b355f2380b6 /contrib/libstdc++/configure.host | |
parent | dd49f056383051d19affcdbe7677e72a9b761c18 (diff) | |
download | src-00db7afddd93b9febd88ed0a8567dc3201852b70.tar.gz src-00db7afddd93b9febd88ed0a8567dc3201852b70.zip |
Notes
Diffstat (limited to 'contrib/libstdc++/configure.host')
-rw-r--r-- | contrib/libstdc++/configure.host | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/contrib/libstdc++/configure.host b/contrib/libstdc++/configure.host new file mode 100644 index 000000000000..db3c57a06f82 --- /dev/null +++ b/contrib/libstdc++/configure.host @@ -0,0 +1,31 @@ +# 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: +# host The configuration host +# host_cpu The configuration host CPU +# target_optspace --enable-target-optspace ("yes", "no", "") + +# 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 + *) + ;; +esac + + |