9b7e0d0005
2001-03-31 Benjamin Kosnik <bkoz@redhat.com> * configure.target: Remove duplicate aix entry. 2001-03-30 Benjamin Kosnik <bkoz@redhat.com> * include/ext/stl_bvector.h: Move to... * include/bits/stl_vector.h: ...here. * include/ext/bvector: Move to... * include/backward/bvector.h: ...here. * include/bits/std_vector.h: Change stl_bvector include. * include/bits/std_queue.h: Remove bvector include. * include/ext/tree: Insert using rb_tree, move to... * include/backward/tree.h: ...here. * include/backward/hash_map.h: Include ext/hash_map. * include/backward/hash_set.h: Include ext/hash_set. * include/backward/queue.h: New file. * include/backward/stack.h: Edit. * include/backward/algo.h: Same. * include/backward/algobase.h: Same. * include/backward/alloc.h: Same. * include/backward/function.h: Same. * include/backward/iomanip.h: Same. * include/backward/istream.h: Same. * include/backward/iterator.h: Same. * include/backward/list.h: Same. * include/backward/map.h: Same. * include/backward/multimap.h: Same. * include/backward/multiset.h: Same. * include/backward/ostream.h: Same. * include/backward/pair.h: Same * include/backward/rope.h: Same. * include/backward/set.h: Same. * include/backward/stream.h: Same. * include/backward/strstream.h: Same. * include/backward/tempbuf.h: Same. * src/Makefile.am (ext_headers): Edit. * src/Makefile.in: Regenerate. * testsuite/ext/headers.cc (main): Fix. * mkcheck.in: Fix. From-SVN: r40979
128 lines
2.9 KiB
SYSTEMD
128 lines
2.9 KiB
SYSTEMD
# configure.target
|
|
|
|
# This shell script handles all target based configuration for libstdc++.
|
|
# It sets various shell variables based on the the target and the
|
|
# configuration options. You can modify this shell script without
|
|
# needing to rerun autoconf.
|
|
|
|
# This shell script should be invoked as
|
|
# . configure.target
|
|
# If it encounters an error, it will exit with a message.
|
|
|
|
# It uses the following shell variables:
|
|
# target The configuration target
|
|
# target_cpu The configuration target CPU
|
|
# target_os The configuration target OS
|
|
# target_optspace --enable-target-optspace ("yes", "no", "")
|
|
|
|
# It possibly modifies the following shell variables:
|
|
# cpu_include_dir CPU-specific include directory, relative to srcdir
|
|
# os_include_dir OS-specific include directory, relative to srcdir
|
|
|
|
|
|
# Set any CPU dependent compiler flags.
|
|
# THIS TABLE IS SORTED. KEEP IT THAT WAY.
|
|
|
|
case "${target_cpu}" in
|
|
alpha*)
|
|
cpu_include_dir="config/cpu/alpha"
|
|
;;
|
|
arm*)
|
|
cpu_include_dir="config/cpu/arm"
|
|
;;
|
|
ia64)
|
|
cpu_include_dir="config/cpu/ia64"
|
|
;;
|
|
i386)
|
|
cpu_include_dir="config/cpu/i386"
|
|
;;
|
|
i486 | i586 | i686 | i786)
|
|
cpu_include_dir="config/cpu/i486"
|
|
;;
|
|
powerpc | rs6000)
|
|
cpu_include_dir="config/cpu/powerpc"
|
|
;;
|
|
sparc64 | ultrasparc)
|
|
cpu_include_dir="config/cpu/sparc/sparc64"
|
|
;;
|
|
sparc*)
|
|
cpu_include_dir="config/cpu/sparc/sparc32"
|
|
;;
|
|
*)
|
|
cpu_include_dir="config/cpu/generic"
|
|
;;
|
|
esac
|
|
|
|
|
|
# Set any OS dependent compiler flags.
|
|
# THIS TABLE IS SORTED. KEEP IT THAT WAY.
|
|
|
|
case "${target_os}" in
|
|
aix4.[3456789]* | aix[56789]*)
|
|
os_include_dir="config/os/aix"
|
|
case "$CXX" in
|
|
*pthread*)
|
|
enable_threads='posix'
|
|
;;
|
|
*)
|
|
enable_threads='no'
|
|
;;
|
|
esac
|
|
;;
|
|
bsd* | freebsd* )
|
|
os_include_dir="config/os/bsd/freebsd"
|
|
;;
|
|
cygwin*)
|
|
os_include_dir="config/os/newlib"
|
|
;;
|
|
*djgpp*)
|
|
os_include_dir="config/os/djgpp"
|
|
;;
|
|
linux* | gnu*)
|
|
os_include_dir="config/os/gnu-linux"
|
|
;;
|
|
irix[1-6] | irix[1-5].* | irix6.[0-4])
|
|
# This is known to work on at least IRIX 5.2 and 6.3.
|
|
os_include_dir="config/os/irix/irix5.2"
|
|
;;
|
|
irix6.5)
|
|
os_include_dir="config/os/irix/irix6.5"
|
|
;;
|
|
netbsd*)
|
|
os_include_dir="config/os/bsd/netbsd"
|
|
;;
|
|
solaris2.5*)
|
|
os_include_dir="config/os/solaris/solaris2.5"
|
|
;;
|
|
solaris2.6*)
|
|
os_include_dir="config/os/solaris/solaris2.6"
|
|
;;
|
|
solaris2.7* | solaris2.8*)
|
|
os_include_dir="config/os/solaris/solaris2.7"
|
|
;;
|
|
hpux)
|
|
os_include_dir="config/os/hpux"
|
|
;;
|
|
*)
|
|
os_include_dir="config/os/generic"
|
|
;;
|
|
esac
|
|
|
|
|
|
# Set any flags dependant on the full target triplet.
|
|
# THIS TABLE IS SORTED. KEEP IT THAT WAY.
|
|
|
|
case "${target}" in
|
|
*-*-aix*)
|
|
ATOMICITYH=$os_include_dir
|
|
;;
|
|
*-*-irix*)
|
|
ATOMICITYH=$os_include_dir
|
|
;;
|
|
*)
|
|
ATOMICITYH=$cpu_include_dir
|
|
;;
|
|
esac
|
|
|
|
|