3 # This shell script handles all host based configuration for libstdc++.
4 # It sets various shell variables based on the the host and the
5 # configuration options. You can modify this shell script without needing
6 # to rerun autoconf/aclocal/etc. This file is "sourced" not executed.
8 # You should read docs/html/17_intro/porting.* to make sense of this file.
11 # It uses the following shell variables as set by config.guess:
12 # host The configuration host (full CPU-vendor-OS triplet)
13 # host_cpu The configuration host CPU
14 # host_os The configuration host OS
17 # It sets the following shell variables:
19 # cpu_include_dir CPU-specific directory, defaults to cpu/generic
20 # if cpu/host_cpu doesn't exist. This is
21 # used to set atomicity_include_dir.
23 # os_include_dir OS-specific directory, defaults to os/generic.
25 # c_model the "C" header model, defaults to c_std.
27 # c_compatibility if "C" compatibility headers are necessary,
30 # abi_baseline_pair directory name for ABI compat testing,
31 # defaults to host_cpu-host_os (as per config.guess)
33 # atomicity_dir location of atomicity.h,
34 # defaults to cpu_include_dir
36 # atomic_word_dir location of atomic_word.h
37 # defaults to generic.
39 # It possibly modifies the following variables:
41 # OPT_LDFLAGS extra flags to pass when linking the library, of
43 # (defaults to empty in acinclude.m4)
45 # port_specific_symbol_files
46 # whitespace-seperated list of files containing
47 # additional symbols to export from the shared
48 # library, when symbol versioning is in use
51 # If the defaults will not work for your platform, you need only change the
52 # variables that won't work, i.e., you do not need to explicitly set a
53 # working variable to its default. Most hosts only need to change the two
54 # *_include_dir variables.
58 # Try to guess a default cpu_include_dir based on the name of the CPU. We
59 # cannot do this for os_include_dir; there are too many portable operating
60 # systems out there. :-)
63 atomic_word_dir=cpu/generic
65 # HOST-SPECIFIC OVERRIDES
66 # Set any CPU-dependent bits.
67 # Here we override defaults and catch more general cases due to naming
68 # conventions (e.g., chip_name* to catch all variants).
70 # THIS TABLE IS SORTED. KEEP IT THAT WAY.
82 # NB: cpu/mips/atomicity.h needs MIPS II or above.
83 # Of course, there is no sane way to test for this, no ABI macro,
84 # and no consistent host_cpu name differentiation. Therefore, only
85 # use it where it is known to be safe, ie it runs linux (see below).
101 if test -f ${glibcxx_srcdir}/config/cpu/${host_cpu}/atomicity.h; then
109 # Set specific CPU overrides for atomic_word_dir. Most can just use generic.
110 # THIS TABLE IS SORTED. KEEP IT THAT WAY.
111 case "${host_cpu}" in
113 atomic_word_dir=cpu/cris
116 atomic_word_dir=cpu/sparc
120 # Now look for the file(s) usually tied to a CPU model, and make
121 # default choices for those if they haven't been explicitly set
123 cpu_include_dir="cpu/${try_cpu}"
124 atomicity_dir=$cpu_include_dir
125 abi_baseline_pair=${try_cpu}-${host_os}
128 # Set any OS-dependent bits.
129 # Set the os_include_dir.
130 # Set c_model, c_compatibility here.
131 # If atomic ops and/or numeric limits are OS-specific rather than
132 # CPU-specifc, set those here too.
133 # THIS TABLE IS SORTED. KEEP IT THAT WAY.
135 aix4.[3456789]* | aix[56789]*)
136 # We set os_include_dir to os/aix only on AIX 4.3 and newer, but
137 # os/aix/atomicity.h works on earlier versions of AIX 4.*, so we
138 # explicitly duplicate the directory for 4.[<3].
139 os_include_dir="os/aix"
140 atomicity_dir="os/aix"
144 os_include_dir="os/generic"
145 atomicity_dir="os/aix"
148 os_include_dir="os/generic"
149 atomicity_dir="cpu/generic"
152 # Plain BSD attempts to share FreeBSD files.
153 os_include_dir="os/bsd/freebsd"
156 os_include_dir="os/newlib"
158 *djgpp*) # leading * picks up "msdosdjgpp"
159 os_include_dir="os/djgpp"
162 os_include_dir="os/bsd/freebsd"
164 gnu* | linux* | kfreebsd*-gnu | knetbsd*-gnu)
165 os_include_dir="os/gnu-linux"
168 os_include_dir="os/hpux"
170 irix[1-6] | irix[1-5].* | irix6.[0-4]*)
171 # This is known to work on at least IRIX 5.2 and 6.3.
172 os_include_dir="os/irix/irix5.2"
173 atomicity_dir=os/irix
174 atomic_word_dir=os/irix
177 os_include_dir="os/irix/irix6.5"
178 atomicity_dir=os/irix
179 atomic_word_dir=os/irix
182 os_include_dir="os/mingw32"
185 os_include_dir="os/bsd/netbsd"
188 os_include_dir="os/qnx/qnx6.1"
192 # This too-vague configuration does not provide enough information
193 # to select a ctype include, and thus os_include_dir is a crap shoot.
194 echo "Please specify the full version of Solaris, ie. solaris2.9 " 1>&2
197 solaris2.5 | solaris2.5.[0-9])
198 os_include_dir="os/solaris/solaris2.5"
201 os_include_dir="os/solaris/solaris2.6"
203 solaris2.[789] | solaris2.1[0-9])
204 os_include_dir="os/solaris/solaris2.7"
207 os_include_dir="os/tpf"
210 os_include_dir="os/vxworks"
213 os_include_dir="os/windiss"
216 os_include_dir="os/generic"
221 # Set any OS-dependent and CPU-dependent bits.
222 # THIS TABLE IS SORTED. KEEP IT THAT WAY.
225 atomicity_dir="cpu/mips"
228 abi_baseline_pair="x86_64-linux-gnu"
231 abi_baseline_pair="alpha-freebsd5"
234 abi_baseline_pair="i386-freebsd4"
237 abi_baseline_pair="i386-freebsd5"
240 abi_baseline_pair="sparc-freebsd5"