Sync usage with man page.
[netbsd-mini2440.git] / gnu / dist / gcc4 / libstdc++-v3 / configure.host
bloba0ddf0be215dc62aa8c829fe94450827d3b24bf5
1 # configure.host
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 not used
21 #                          directly, but sets the default for others.
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,
28 #                          defaults to no.
30 #   abi_baseline_pair      directory name for ABI compat testing,
31 #                          defaults to host_cpu-host_os (as per config.guess)
33 #   abi_tweaks_dir         location of cxxabi_tweaks.h,
34 #                          defaults to cpu_include_dir
36 #   atomicity_dir          location of atomicity.h,
37 #                          defaults to cpu_include_dir
39 #   atomic_word_dir        location of atomic_word.h
40 #                          defaults to generic.
42 #   cpu_defines_dir        location of cpu_defines.h
43 #                          defaults to generic.
45 # It possibly modifies the following variables:
47 #   OPT_LDFLAGS            extra flags to pass when linking the library, of
48 #                          the form '-Wl,blah'
49 #                          (defaults to empty in acinclude.m4)
51 #   port_specific_symbol_files
52 #                          whitespace-seperated list of files containing
53 #                          additional symbols to export from the shared
54 #                          library, when symbol versioning is in use
57 # If the defaults will not work for your platform, you need only change the
58 # variables that won't work, i.e., you do not need to explicitly set a
59 # working variable to its default.  Most hosts only need to change the two
60 # *_include_dir variables.
63 # DEFAULTS
64 # Try to guess a default cpu_include_dir based on the name of the CPU.  We
65 # cannot do this for os_include_dir; there are too many portable operating
66 # systems out there.  :-)
67 c_model=c_std
68 c_compatibility=no
69 atomic_word_dir=cpu/generic
70 cpu_defines_dir=cpu/generic
72 # HOST-SPECIFIC OVERRIDES
73 # Set any CPU-dependent bits.
74 # Here we override defaults and catch more general cases due to naming
75 # conventions (e.g., chip_name* to catch all variants).
77 # THIS TABLE IS SORTED.  KEEP IT THAT WAY.
78 case "${host_cpu}" in
79   alpha*)
80     try_cpu=alpha
81     ;;
82   arm* | xscale | ep9312)
83     try_cpu=arm
84     ;;
85   i[567]86 | x86_64)
86     try_cpu=i486
87     ;;
88   hppa*)
89     try_cpu=hppa
90     ;;
91   mips*)
92     # NB: cpu/mips/atomicity.h needs MIPS II or above.  
93     # Of course, there is no sane way to test for this, no ABI macro,
94     # and no consistent host_cpu name differentiation. Therefore, only
95     # use it where it is known to be safe, ie it runs linux (see below).
96     try_cpu=generic
97     ;;
98   m680[246]0)
99     try_cpu=m68k
100     ;;
101   powerpc* | rs6000)
102     try_cpu=powerpc
103     ;;
104   s390x)
105     try_cpu=s390
106     ;;
107   sparc* | ultrasparc)
108     try_cpu=sparc
109     ;;
110   *)
111     if test -d ${glibcxx_srcdir}/config/cpu/${host_cpu}; then
112       try_cpu=${host_cpu}
113     else
114       try_cpu=generic
115     fi
116     ;;
117 esac
119 # Set specific CPU overrides for atomic_word_dir. Most can just use generic.
120 # THIS TABLE IS SORTED.  KEEP IT THAT WAY.
121 case "${host_cpu}" in
122   alpha*)
123     atomic_word_dir=cpu/alpha
124     ;;
125   cris*)
126     atomic_word_dir=cpu/cris
127     ;;
128   ia64)
129     atomic_word_dir=cpu/ia64
130     ;;
131   powerpc* | rs6000)
132     atomic_word_dir=cpu/powerpc
133     ;;
134   sparc* | ultrasparc)
135     atomic_word_dir=cpu/sparc
136     ;;
137 esac
139 # Set specific CPU overrides for cpu_defines_dir. Most can just use generic.
140 # THIS TABLE IS SORTED.  KEEP IT THAT WAY.
141 case "${host_cpu}" in
142   powerpc* | rs6000)
143     cpu_defines_dir=cpu/powerpc
144     ;;
145 esac
147 # Now look for the file(s) usually tied to a CPU model, and make
148 # default choices for those if they haven't been explicitly set
149 # already.  
150 cpu_include_dir=cpu/${try_cpu}
151 abi_baseline_pair=${try_cpu}-${host_os}
152 unset try_cpu
154 if test -f ${glibcxx_srcdir}/config/${cpu_include_dir}/atomicity.h ; then
155   atomicity_dir=$cpu_include_dir
156 else
157   atomicity_dir="cpu/generic"
160 if test -f ${glibcxx_srcdir}/config/${cpu_include_dir}/cxxabi_tweaks.h ; then
161   abi_tweaks_dir=$cpu_include_dir
162 else
163   abi_tweaks_dir="cpu/generic"
166 # Set any OS-dependent bits.
167 # Set the os_include_dir.
168 # Set c_model, c_compatibility here.
169 # If atomic ops and/or numeric limits are OS-specific rather than
170 # CPU-specifc, set those here too.
171 # THIS TABLE IS SORTED.  KEEP IT THAT WAY.
172 case "${host_os}" in
173   aix4.[3456789]* | aix[56789]*)
174     # We set os_include_dir to os/aix only on AIX 4.3 and newer, but
175     # os/aix/atomicity.h works on earlier versions of AIX 4.*, so we
176     # explicitly duplicate the directory for 4.[<3].
177     os_include_dir="os/aix"
178     atomicity_dir="os/aix"
179     atomic_word_dir="os/aix"
180     OPT_LDFLAGS="-Wl,-G"
181     ;;
182   aix4.*)
183     os_include_dir="os/generic"
184     atomicity_dir="os/aix"
185     atomic_word_dir="os/aix"
186     ;;
187   aix*)
188     os_include_dir="os/generic"
189     atomicity_dir="cpu/generic"
190     ;;
191   bsd*)
192     # Plain BSD attempts to share FreeBSD files.
193     os_include_dir="os/bsd/freebsd"
194     ;;
195   cygwin*)
196     os_include_dir="os/newlib"
197     ;;
198   darwin | darwin[1-7] | darwin[1-7].*)
199     # On Darwin, performance is improved if libstdc++ is single-module.
200     # Up to at least 10.3.7, -flat_namespace is required for proper
201     # treatment of coalesced symbols.
202     OPT_LDFLAGS="${OPT_LDFLAGS} -Wl,-single_module -Wl,-flat_namespace"
203     os_include_dir="os/bsd/darwin"
204     ;;
205   darwin[89] | darwin[89].* | darwin[1-9][0-9]* )
206     # On Darwin, performance is improved if libstdc++ is single-module,
207     # and on 8+ compatibility is better if not -flat_namespace.
208     OPT_LDFLAGS="${OPT_LDFLAGS} -Wl,-single_module"
209     os_include_dir="os/bsd/darwin"
210     ;;
211   *djgpp*)      # leading * picks up "msdosdjgpp"
212     os_include_dir="os/djgpp"
213     ;;
214   freebsd*)
215     os_include_dir="os/bsd/freebsd"
216     ;;
217   gnu* | linux* | kfreebsd*-gnu | knetbsd*-gnu)
218     os_include_dir="os/gnu-linux"
219     ;;
220   hpux*)
221     os_include_dir="os/hpux"
222     ;;
223   irix[1-6] | irix[1-5].* | irix6.[0-4]*)
224     # This is known to work on at least IRIX 5.2 and 6.3.
225     os_include_dir="os/irix/irix5.2"
226     atomicity_dir=os/irix
227     atomic_word_dir=os/irix
228     ;;
229   irix6.5*)
230     os_include_dir="os/irix/irix6.5"
231     atomicity_dir=os/irix
232     atomic_word_dir=os/irix
233     ;;
234   mingw32*)
235     os_include_dir="os/mingw32"
236     ;;
237   netbsd*)
238     os_include_dir="os/bsd/netbsd"
239     ;;
240   qnx6.[12]*)
241     os_include_dir="os/qnx/qnx6.1"
242     c_model=c
243     ;;
244   solaris2)
245     # This too-vague configuration does not provide enough information
246     # to select a ctype include, and thus os_include_dir is a crap shoot.
247     echo "Please specify the full version of Solaris, ie. solaris2.9 " 1>&2
248     exit 1
249     ;;
250   solaris2.5 | solaris2.5.[0-9])
251     os_include_dir="os/solaris/solaris2.5"
252     ;;
253   solaris2.6)
254     os_include_dir="os/solaris/solaris2.6"
255     ;;
256   solaris2.[789] | solaris2.1[0-9])
257     os_include_dir="os/solaris/solaris2.7"
258     ;;
259   tpf)
260     os_include_dir="os/tpf"
261     ;;
262   vxworks)
263     os_include_dir="os/vxworks"
264     ;;
265   windiss*)
266     os_include_dir="os/windiss"
267     ;;
268   *)
269     os_include_dir="os/generic"
270     ;;
271 esac
274 # Set any OS-dependent and CPU-dependent bits.
275 # THIS TABLE IS SORTED.  KEEP IT THAT WAY.
276 case "${host}" in
277   alpha*-*-freebsd5*)
278     abi_baseline_pair="alpha-freebsd5"
279     ;;
280   arm*-*-linux*)
281     abi_baseline_pair="arm-linux-gnu"
282     ;;
283   i*86-*-freebsd4*)
284     abi_baseline_pair="i386-freebsd4"
285     ;;
286   i*86-*-freebsd5*)
287     abi_baseline_pair="i386-freebsd5"
288     ;;
289   mips*-*-linux*)
290     atomicity_dir="cpu/mips"
291     abi_baseline_pair="mips-linux-gnu"
292     cpu_include_dir="cpu/mips"
293     ;;
294   powerpc*-*-darwin*)
295     port_specific_symbol_files="\$(srcdir)/../config/os/bsd/darwin/ppc-extra.ver"
296     ;;
297   powerpc64-*-linux*)
298     abi_baseline_pair="powerpc64-linux-gnu"
299     ;;
300   s390-*-linux*)
301     abi_baseline_pair="s390-linux-gnu"
302     ;;
303   s390x-*-linux*)
304     abi_baseline_pair="s390x-linux-gnu"
305     ;;
306   sparc*-*-freebsd5*)
307     abi_baseline_pair="sparc-freebsd5"
308     ;;
309   x86_64-*-linux*)
310     abi_baseline_pair="x86_64-linux-gnu"
311     ;;
312 esac