]> gcc.gnu.org Git - gcc.git/blame - configure.in
Use varrays for constant-equivalence data:
[gcc.git] / configure.in
CommitLineData
6599da04
JM
1#! /bin/bash
2##############################################################################
3
4## This file is a shell script fragment that supplies the information
5## necessary to tailor a template configure script into the configure
6## script appropriate for this directory. For more information, check
7## any existing configure script.
8
9## Be warned, there are two types of configure.in files. There are those
10## used by Autoconf, which are macros which are expanded into a configure
11## script by autoconf. The other sort, of which this is one, is executed
12## by Cygnus configure.
13
14## For more information on these two systems, check out the documentation
15## for 'Autoconf' (autoconf.texi) and 'Configure' (configure.texi).
16
c9ffaa63 17# Copyright (C) 1992, 93, 94, 95, 96, 97, 1998, 1999 Free Software Foundation, Inc.
6599da04
JM
18#
19# This file is free software; you can redistribute it and/or modify it
20# under the terms of the GNU General Public License as published by
21# the Free Software Foundation; either version 2 of the License, or
22# (at your option) any later version.
23#
24# This program is distributed in the hope that it will be useful, but
25# WITHOUT ANY WARRANTY; without even the implied warranty of
26# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
27# General Public License for more details.
28#
29# You should have received a copy of the GNU General Public License
30# along with this program; if not, write to the Free Software
31# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
32
33##############################################################################
34
35### To add a new directory to the tree, first choose whether it is a target
36### or a host dependent tool. Then put it into the appropriate list
37### (library or tools, host or target), doing a dependency sort. For
38### example, gdb requires that byacc (or bison) be built first, so it is in
39### the ${host_tools} list after byacc and bison.
40
41
42# these libraries are used by various programs built for the host environment
43#
5d4a5ee6 44host_libs="intl mmalloc libiberty opcodes bfd readline gash db tcl tk tclX itcl tix libgui"
6599da04
JM
45
46if [ "${enable_gdbgui}" = "yes" ] ; then
47 host_libs="${host_libs} libgui"
48fi
49
50# these tools are built for the host environment
51# Note, the powerpc-eabi build depends on sim occurring before gdb in order to
52# know that we are building the simulator.
5d4a5ee6
JL
53host_tools="texinfo byacc flex bison binutils ld gas gcc sim gdb make patch prms send-pr gprof gdbtest tgas etc expect dejagnu ash bash bzip2 m4 autoconf automake libtool ispell grep diff rcs cvssrc fileutils shellutils time textutils wdiff find emacs emacs19 uudecode hello tar gzip indent recode release sed utils guile perl apache inet gawk findutils snavigator libtool gettext"
54
6599da04
JM
55
56# these libraries are built for the target environment, and are built after
57# the host libraries and the host tools (which may be a cross compiler)
58#
5d4a5ee6
JL
59target_libs="target-libiberty \
60 target-libgloss \
61 target-newlib \
62 target-libio \
63 target-librx \
7c5fa4cb 64 target-libstdc++ \
5d4a5ee6
JL
65 target-libg++ \
66 target-libf2c \
67 target-libchill \
68 target-libobjc"
6599da04
JM
69
70# these tools are built using the target libs, and are intended to run only
71# in the target environment
72#
73# note: any program that *uses* libraries that are in the "target_libs"
74# list belongs in this list. those programs are also very likely
75# candidates for the "native_only" list which follows
76#
77target_tools="target-examples target-groff target-gperf"
78
79################################################################################
80
81## These two lists are of directories that are to be removed from the
82## ${configdirs} list for either cross-compilations or for native-
83## compilations. For example, it doesn't make that much sense to
84## cross-compile Emacs, nor is it terribly useful to compile target-libiberty in
85## a native environment.
86
87# directories to be built in the native environment only
88#
89# This must be a single line because of the way it is searched by grep in
90# the code below.
5d4a5ee6 91native_only="autoconf automake libtool cvssrc emacs emacs19 fileutils find gawk gettext grep gzip hello indent ispell m4 rcs recode sed shellutils tar textutils gash uudecode wdiff gprof target-groff guile perl apache inet time ash bash bzip2 prms snavigator gnuserv target-gperf"
6599da04
JM
92
93# directories to be built in a cross environment only
94#
5d4a5ee6 95cross_only="target-libgloss target-newlib target-cygmon target-opcodes target-libstub"
6599da04
JM
96
97## All tools belong in one of the four categories, and are assigned above
98## We assign ${configdirs} this way to remove all embedded newlines. This
99## is important because configure will choke if they ever get through.
100## ${configdirs} is directories we build using the host tools.
101## ${target_configdirs} is directories we build using the target tools.
102#
103configdirs=`echo ${host_libs} ${host_tools}`
104target_configdirs=`echo ${target_libs} ${target_tools}`
105
106################################################################################
107
108srctrigger=move-if-change
109srcname="gnu development package"
110
111# This gets set non-empty for some net releases of packages.
112appdirs=""
113
114# per-host:
115
116# Work in distributions that contain no compiler tools, like Autoconf.
117if [ -d ${srcdir}/config ]; then
118case "${host}" in
e2de3a46
L
119 m68k-hp-hpux*)
120 host_makefile_frag="${host_makefile_frag} config/mh-hp300"
121 ;;
122 m68k-apollo-sysv*)
123 host_makefile_frag="${host_makefile_frag} config/mh-apollo68"
124 ;;
125 m68k-apollo-bsd*)
126 host_makefile_frag="${host_makefile_frag} config/mh-a68bsd"
127 ;;
128 m88k-dg-dgux*)
129 host_makefile_frag="${host_makefile_frag} config/mh-dgux"
130 ;;
131 m88k-harris-cxux*)
132 host_makefile_frag="${host_makefile_frag} config/mh-cxux"
133 ;;
134 m88k-motorola-sysv*)
135 host_makefile_frag="${host_makefile_frag} config/mh-delta88"
136 ;;
137 mips*-dec-ultrix*)
138 host_makefile_frag="${host_makefile_frag} config/mh-decstation"
139 ;;
140 mips*-nec-sysv4*)
141 host_makefile_frag="${host_makefile_frag} config/mh-necv4"
142 ;;
143 mips*-sgi-irix6*)
144 host_makefile_frag="${host_makefile_frag} config/mh-irix6"
145 ;;
146 mips*-sgi-irix5*)
147 host_makefile_frag="${host_makefile_frag} config/mh-irix5"
148 ;;
149 mips*-sgi-irix4*)
150 host_makefile_frag="${host_makefile_frag} config/mh-irix4"
151 ;;
152 mips*-sgi-irix3*)
153 host_makefile_frag="${host_makefile_frag} config/mh-sysv"
154 ;;
155 mips*-*-sysv4*)
156 host_makefile_frag="${host_makefile_frag} config/mh-sysv4"
157 ;;
158 mips*-*-sysv*)
159 host_makefile_frag="${host_makefile_frag} config/mh-riscos"
160 ;;
5d4a5ee6
JL
161 i[3456]86-*-sysv5*)
162 host_makefile_frag="${host_makefile_frag} config/mh-sysv5"
163 ;;
e2de3a46
L
164 i[3456]86-*-dgux*)
165 host_makefile_frag="${host_makefile_frag} config/mh-dgux386"
166 ;;
167 i[3456]86-ncr-sysv4.3*)
168 host_makefile_frag="${host_makefile_frag} config/mh-ncrsvr43"
169 ;;
170 i[3456]86-ncr-sysv4*)
171 host_makefile_frag="${host_makefile_frag} config/mh-ncr3000"
172 ;;
173 i[3456]86-*-sco3.2v5*)
174 host_makefile_frag="${host_makefile_frag} config/mh-sysv"
175 ;;
176 i[3456]86-*-sco*)
177 host_makefile_frag="${host_makefile_frag} config/mh-sco"
178 ;;
73a6d2e7
RL
179 i[3456]86-*-udk*)
180 host_makefile_frag="${host_makefile_frag} config/mh-sysv5"
181 ;;
e2de3a46
L
182 i[3456]86-*-isc*)
183 host_makefile_frag="${host_makefile_frag} config/mh-sysv"
184 ;;
185 i[3456]86-*-solaris2*)
186 host_makefile_frag="${host_makefile_frag} config/mh-sysv4"
187 ;;
188 i[3456]86-*-aix*)
189 host_makefile_frag="${host_makefile_frag} config/mh-aix386"
190 ;;
191 i[3456]86-*-go32*)
192 host_makefile_frag="${host_makefile_frag} config/mh-go32"
193 ;;
194 i[3456]86-*-msdosdjgpp*)
195 host_makefile_frag="${host_makefile_frag} config/mh-go32"
196 ;;
197 *-cygwin32*)
198 host_makefile_frag="${host_makefile_frag} config/mh-cygwin32"
199 ;;
d39cd7a1
MK
200 *-mingw32*)
201 host_makefile_frag="${host_makefile_frag} config/mh-mingw32"
202 ;;
c9ffaa63
MK
203 *-interix*)
204 host_makefile_frag="${host_makefile_frag} config/mh-interix"
205 ;;
e2de3a46
L
206 *-windows*)
207 host_makefile_frag="${host_makefile_frag} config/mh-windows"
208 ;;
209 vax-*-ultrix2*)
210 host_makefile_frag="${host_makefile_frag} config/mh-vaxult2"
211 ;;
212 *-*-solaris2*)
213 host_makefile_frag="${host_makefile_frag} config/mh-solaris"
214 ;;
215 m68k-sun-sunos*)
216 host_makefile_frag="${host_makefile_frag} config/mh-sun3"
217 ;;
218 *-hp-hpux[78]*)
219 host_makefile_frag="${host_makefile_frag} config/mh-hpux8"
220 ;;
221 *-hp-hpux*)
222 host_makefile_frag="${host_makefile_frag} config/mh-hpux"
223 ;;
224 *-*-hiux*)
225 host_makefile_frag="${host_makefile_frag} config/mh-hpux"
226 ;;
227 rs6000-*-lynxos*)
228 host_makefile_frag="${host_makefile_frag} config/mh-lynxrs6k"
229 ;;
230 *-*-lynxos*)
231 host_makefile_frag="${host_makefile_frag} config/mh-lynxos"
232 ;;
57fc6638
DE
233 *-*-aix4.[3456789]* | *-*-aix[56789].*)
234 host_makefile_frag="${host_makefile_frag} config/mh-aix43"
235 ;;
e2de3a46
L
236 *-*-sysv4*)
237 host_makefile_frag="${host_makefile_frag} config/mh-sysv4"
238 ;;
239 *-*-sysv*)
240 host_makefile_frag="${host_makefile_frag} config/mh-sysv"
241 ;;
6599da04
JM
242esac
243fi
244
245# If we aren't going to be using gcc, see if we can extract a definition
246# of CC from the fragment.
5d4a5ee6 247if [ -z "${CC}" ] && [ "${build}" = "${host}" ]; then
6599da04
JM
248 IFS="${IFS= }"; save_ifs="$IFS"; IFS="${IFS}:"
249 found=
250 for dir in $PATH; do
251 test -z "$dir" && dir=.
252 if test -f $dir/gcc; then
253 found=yes
254 break
255 fi
256 done
257 IFS="$save_ifs"
5d4a5ee6 258 if [ -z "${found}" ] && [ -n "${host_makefile_frag}" ] && [ -f "${srcdir}/${host_makefile_frag}" ]; then
6599da04
JM
259 xx=`sed -n -e 's/^[ ]*CC[ ]*=[ ]*\(.*\)$/\1/p' < ${srcdir}/${host_makefile_frag}`
260 if [ -n "${xx}" ] ; then
261 CC=$xx
262 fi
263 fi
264fi
265
266# We default to --with-shared on platforms where -fpic is meaningless.
267# Well, we don't yet, but we will.
268if false && [ "${host}" = "${target}" ] && [ x${enable_shared} = x ]; then
269 case "${target}" in
b104e095
RH
270 alpha*-dec-osf*) enable_shared=yes ;;
271 alpha*-*-linux*) enable_shared=yes ;;
6599da04
JM
272 mips-sgi-irix5*) enable_shared=yes ;;
273 *) enable_shared=no ;;
274 esac
275fi
276
277case "${enable_shared}" in
278 yes) shared=yes ;;
279 no) shared=no ;;
280 "") shared=no ;;
281 *) shared=yes ;;
282esac
283
284if [ x${shared} = xyes ]; then
6599da04 285 case "${host}" in
e2de3a46
L
286 hppa*)
287 host_makefile_frag="${host_makefile_frag} config/mh-papic"
288 ;;
5d4a5ee6
JL
289 i[3456]86-*-cygwin32*)
290 # We don't want -fPIC on cygwin32.
291 ;;
e2de3a46
L
292 i[3456]86-*)
293 host_makefile_frag="${host_makefile_frag} config/mh-x86pic"
294 ;;
295 sparc64-*)
296 host_makefile_frag="${host_makefile_frag} config/mh-sparcpic"
297 ;;
298 powerpc*-*)
299 host_makefile_frag="${host_makefile_frag} config/mh-ppcpic"
300 ;;
b104e095 301 alpha*-*-linux*)
e2de3a46
L
302 host_makefile_frag="${host_makefile_frag} config/mh-elfalphapic"
303 ;;
304 *)
520ab477 305 if test -f ${srcdir}/config/mh-${host_cpu}pic; then
4bcdb76d
AO
306 host_makefile_frag="${host_makefile_frag} config/mh-${host_cpu}pic"
307 fi
e2de3a46 308 ;;
6599da04 309 esac
e2de3a46
L
310fi
311
312rm -f mh-frag
313if [ -n "${host_makefile_frag}" ] ; then
314 for f in ${host_makefile_frag}
315 do
316 cat ${srcdir}/$f >> mh-frag
317 done
318 host_makefile_frag=mh-frag
6599da04
JM
319fi
320
321# per-target:
322
323case "${target}" in
e2de3a46
L
324 v810*)
325 target_makefile_frag="${target_makefile_frag} config/mt-v810"
326 ;;
327 i[3456]86-*-netware*)
328 target_makefile_frag="${target_makefile_frag} config/mt-netware"
329 ;;
330 powerpc-*-netware*)
331 target_makefile_frag="${target_makefile_frag} config/mt-netware"
332 ;;
333 *-*-linux-gnu)
334 target_makefile_frag="${target_makefile_frag} config/mt-linux"
335 ;;
6599da04
JM
336esac
337
3f4ea1de
MM
338# If --enable-target-optspace always use -Os instead of -O2 to build
339# the target libraries, similarly if it is not specified, use -Os
340# on selected platforms.
3f4ea1de
MM
341case "${enable_target_optspace}:${target}" in
342 yes:*)
343 target_makefile_frag="${target_makefile_frag} config/mt-ospace"
344 ;;
345 :m32r-*)
346 target_makefile_frag="${target_makefile_frag} config/mt-ospace"
347 ;;
348 no:* | :*)
349 ;;
350 *)
351 echo "*** bad value \"${enable_target_optspace}\" for --enable-target-optspace flag; ignored" 1>&2
352 ;;
353esac
354
6599da04
JM
355skipdirs=
356gasdir=gas
357use_gnu_ld=
358use_gnu_as=
359
360# some tools are so dependent upon X11 that if we're not building with X,
361# it's not even worth trying to configure, much less build, that tool.
362
363case ${with_x} in
364 yes | "") # the default value for this tree is that X11 is available
365 ;;
366 no)
5d4a5ee6 367 skipdirs="${skipdirs} tk libgui gash"
6599da04
JM
368 ;;
369 *)
370 echo "*** bad value \"${with_x}\" for -with-x flag; ignored" 1>&2
371 ;;
372esac
373
374# Some tools are only suitable for building in a "native" situation.
375# Those are added when we have a host==target configuration. For cross
376# toolchains, we add some directories that should only be useful in a
377# cross-compiler.
378
379is_cross_compiler=
380
381if [ x"${host}" = x"${target}" ] ; then
382 # when doing a native toolchain, don't build the targets
383 # that are in the 'cross only' list
384 skipdirs="${skipdirs} ${cross_only}"
385 is_cross_compiler=no
6599da04
JM
386else
387 # similarly, don't build the targets in the 'native only'
388 # list when building a cross compiler
389 skipdirs="${skipdirs} ${native_only}"
390 is_cross_compiler=yes
6599da04
JM
391fi
392
494933e4
JL
393# We always want to use the same name for this directory, so that dejagnu
394# can reliably find it.
395target_subdir=${target_alias}
f653f0ab 396
6599da04
JM
397if [ ! -d ${target_subdir} ] ; then
398 if mkdir ${target_subdir} ; then true
399 else
400 echo "'*** could not make ${PWD=`pwd`}/${target_subdir}" 1>&2
401 exit 1
402 fi
403fi
404
405copy_dirs=
406
407# Handle --with-headers=XXX. The contents of the named directory are
408# copied to $(tooldir)/sys-include.
409if [ x"${with_headers}" != x ]; then
410 if [ x${is_cross_compiler} = xno ]; then
411 echo 1>&2 '***' --with-headers is only supported when cross compiling
412 exit 1
413 fi
414 case "${exec_prefixoption}" in
415 "") x=${prefix} ;;
416 *) x=${exec_prefix} ;;
417 esac
418 copy_dirs="${copy_dirs} ${with_headers} $x/${target_alias}/sys-include"
419fi
420
421# Handle --with-libs=XXX. Multiple directories are permitted. The
422# contents are copied to $(tooldir)/lib.
423if [ x"${with_libs}" != x ]; then
424 if [ x${is_cross_compiler} = xno ]; then
425 echo 1>&2 '***' --with-libs is only supported when cross compiling
426 exit 1
427 fi
428 # Copy the libraries in reverse order, so that files in the first named
429 # library override files in subsequent libraries.
430 case "${exec_prefixoption}" in
431 "") x=${prefix} ;;
432 *) x=${exec_prefix} ;;
433 esac
434 for l in ${with_libs}; do
435 copy_dirs="$l $x/${target_alias}/lib ${copy_dirs}"
436 done
437fi
438
439# If both --with-headers and --with-libs are specified, default to
440# --without-newlib.
441if [ x"${with_headers}" != x ] && [ x"${with_libs}" != x ]; then
442 if [ x"${with_newlib}" = x ]; then
443 with_newlib=no
444 fi
445fi
446
447# Recognize --with-newlib/--without-newlib.
448if [ x${with_newlib} = xno ]; then
449 skipdirs="${skipdirs} target-newlib"
450elif [ x${with_newlib} = xyes ]; then
451 skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
452fi
453
454# Default to using --with-stabs for certain targets.
455if [ x${with_stabs} = x ]; then
456 case "${target}" in
457 mips*-*-irix6*)
458 ;;
c5ce8032 459 mips*-*-* | alpha*-*-osf*)
6599da04
JM
460 with_stabs=yes;
461 withoptions="${withoptions} --with-stabs"
462 ;;
463 esac
464fi
465
466# Handle ${copy_dirs}
467set fnord ${copy_dirs}
468shift
469while [ $# != 0 ]; do
470 if [ -f $2/COPIED ] && [ x"`cat $2/COPIED`" = x"$1" ]; then
471 :
472 else
473 echo Copying $1 to $2
474
475 # Use the install script to create the directory and all required
476 # parent directories.
477 if [ -d $2 ]; then
478 :
479 else
480 echo >config.temp
481 ${srcdir}/install-sh -c -m 644 config.temp $2/COPIED
482 fi
483
484 # Copy the directory, assuming we have tar.
485 # FIXME: Should we use B in the second tar? Not all systems support it.
486 (cd $1; tar -cf - .) | (cd $2; tar -xpf -)
487
488 # It is the responsibility of the user to correctly adjust all
489 # symlinks. If somebody can figure out how to handle them correctly
490 # here, feel free to add the code.
491
492 echo $1 > $2/COPIED
493 fi
494 shift; shift
495done
496
497# Configure extra directories which are host specific
498
499case "${host}" in
500 i[3456]86-*-go32*)
501 configdirs="$configdirs dosrel" ;;
d39cd7a1
MK
502 i[3456]86-*-mingw32*)
503 configdirs="$configdirs dosrel" ;;
6599da04
JM
504 *-cygwin32*)
505 configdirs="$configdirs dosrel" ;;
506esac
507
508# Remove more programs from consideration, based on the host or
509# target this usually means that a port of the program doesn't
510# exist yet.
511
512noconfigdirs=""
513
514case "${host}" in
515 i[3456]86-*-vsta)
5d4a5ee6 516 noconfigdirs="tcl expect dejagnu make texinfo bison patch flex byacc send-pr gprof uudecode dejagnu diff guile perl apache inet itcl tix db snavigator gnuserv gettext"
6599da04
JM
517 ;;
518 i[3456]86-*-go32* | i[3456]86-*-msdosdjgpp*)
5d4a5ee6 519 noconfigdirs="tcl tk expect dejagnu make texinfo bison patch flex byacc send-pr uudecode dejagnu diff guile perl apache inet itcl tix db snavigator gnuserv gettext"
6599da04 520 ;;
d39cd7a1 521 i[3456]86-*-mingw32*)
5d4a5ee6
JL
522 # noconfigdirs="tcl tk expect dejagnu make texinfo bison patch flex byacc send-pr uudecode dejagnu diff guile perl apache inet itcl tix db snavigator gnuserv"
523 noconfigdirs="expect dejagnu cvs autoconf automake send-pr gprof rcs guile perl texinfo apache inet libtool"
d39cd7a1 524 ;;
6599da04 525 *-*-cygwin32)
5d4a5ee6 526 noconfigdirs="autoconf automake send-pr gprof rcs guile perl texinfo apache inet"
6599da04
JM
527 ;;
528 *-*-windows*)
529# This is only used to build WinGDB...
530# note that powerpc-eabi depends on sim configured before gdb.
531 configdirs="bfd libiberty opcodes readline sim gdb"
532 target_configdirs=
533 ;;
5d4a5ee6
JL
534 *-*-netbsd*)
535 noconfigdirs="rcs"
536 ;;
6599da04 537 ppc*-*-pe)
5d4a5ee6 538 noconfigdirs="patch diff make tk tcl expect dejagnu cvssrc autoconf automake texinfo bison send-pr gprof rcs guile perl apache inet itcl tix db snavigator gnuserv"
6599da04
JM
539 ;;
540esac
541
542
543case "${target}" in
544 *-*-netware)
545 noconfigdirs="$noconfigdirs target-libg++ target-libstdc++ target-librx target-newlib target-libiberty target-libgloss"
546 ;;
3fbc0b70
JS
547 *-*-rtems*)
548 noconfigdirs="$noconfigdirs target-libgloss"
549 ;;
6599da04
JM
550 *-*-vxworks*)
551 noconfigdirs="$noconfigdirs target-newlib target-libgloss"
552 ;;
b104e095 553 alpha*-dec-osf*)
6599da04
JM
554 # ld works, but does not support shared libraries. emacs doesn't
555 # work. newlib is not 64 bit ready. I'm not sure about fileutils.
556 # gas doesn't generate exception information.
557 noconfigdirs="$noconfigdirs gas ld emacs fileutils target-newlib target-libgloss"
558 ;;
559 alpha*-*-*vms*)
560 noconfigdirs="$noconfigdirs gdb ld target-newlib target-libgloss"
561 ;;
b104e095 562 alpha*-*-linux*)
e2de3a46
L
563 # newlib is not 64 bit ready
564 noconfigdirs="$noconfigdirs target-newlib target-libgloss"
565 # linux has rx in libc
566 skipdirs="$skipdirs target-librx"
567 ;;
6599da04
JM
568 alpha*-*-*)
569 # newlib is not 64 bit ready
570 noconfigdirs="$noconfigdirs target-newlib target-libgloss"
571 ;;
572 arc-*-*)
573 noconfigdirs="$noconfigdirs target-libgloss"
574 ;;
575 arm-*-pe*)
576 noconfigdirs="$noconfigdirs target-libgloss"
577 ;;
578 arm-*-coff*)
579 noconfigdirs="$noconfigdirs target-libgloss"
580 ;;
b9d6c60d
MH
581 c4x-*-*)
582 noconfigdirs="$noconfigdirs target-libg++ target-libstdc++ target-libio target-librx target-libgloss"
583 ;;
e98e406f
NC
584 thumb-*-coff)
585 noconfigdirs="$noconfigdirs target-libgloss"
586 ;;
5d4a5ee6
JL
587 arm-*-riscix*)
588 noconfigdirs="$noconfigdirs ld target-libgloss"
589 ;;
6599da04
JM
590 d10v-*-*)
591 noconfigdirs="$noconfigdirs target-librx target-libg++ target-libstdc++ target-libio target-libgloss"
592 ;;
593 h8300*-*-* | \
594 h8500-*-*)
595 noconfigdirs="$noconfigdirs target-libg++ target-libstdc++ target-libio target-librx target-libgloss"
596 ;;
597 hppa*-*-*elf* | \
3fbc0b70 598 hppa*-*-lites*)
6599da04
JM
599 # Do configure ld/binutils/gas for this case.
600 ;;
601 hppa*-*-*)
602 # HP's C compiler doesn't handle Emacs correctly (but on BSD and Mach
603 # cc is gcc, and on any system a user should be able to link cc to
604 # whatever they want. FIXME, emacs emacs19).
605 case "${CC}" in
606 "" | cc*) noconfigdirs="$noconfigdirs emacs emacs19" ;;
607 *) ;;
608 esac
609 noconfigdirs="$noconfigdirs ld shellutils"
610 ;;
611 i[3456]86-*-go32* | i[3456]-*-msdosdjgpp*)
612 # but don't build gdb
613 noconfigdirs="$noconfigdirs gdb target-libg++ target-libstdc++ target-libio target-librx"
614 ;;
f401679e
JW
615 *-*-linux*)
616 # linux has rx in libc
617 skipdirs="$skipdirs target-librx"
618 ;;
d39cd7a1
MK
619 i[3456]86-*-mingw32*)
620 target_configdirs="$target_configdirs target-mingw"
621 noconfigdirs="$noconfigdirs expect target-libgloss"
622
5d4a5ee6 623 # Can't build gdb for mingw32 if not native.
d39cd7a1
MK
624 case "${host}" in
625 i[3456]86-*-mingw32) ;; # keep gdb tcl tk expect etc.
5d4a5ee6 626 *) noconfigdirs="$noconfigdirs gdb tcl tk expect itcl tix db snavigator gnuserv"
d39cd7a1
MK
627 ;;
628 esac
629 ;;
5d4a5ee6 630 *-*-cygwin32*)
6599da04 631 target_configdirs="$target_configdirs target-winsup"
5d4a5ee6 632 noconfigdirs="$noconfigdirs target-gperf target-libgloss"
6599da04
JM
633 # always build newlib.
634 skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
635
636 # Can't build gdb for cygwin32 if not native.
637 case "${host}" in
5d4a5ee6
JL
638 *-*-cygwin32*) ;; # keep gdb tcl tk expect etc.
639 *) noconfigdirs="$noconfigdirs gdb tcl tk expect itcl tix libgui db snavigator gnuserv"
6599da04
JM
640 ;;
641 esac
642 ;;
643 i[3456]86-*-pe)
644 noconfigdirs="$noconfigdirs target-libg++ target-libstdc++ target-libio target-librx target-libgloss"
645 ;;
646 i[3456]86-*-sco3.2v5*)
647 # The linker does not yet know about weak symbols in COFF,
648 # and is not configured to handle mixed ELF and COFF.
5d4a5ee6 649 noconfigdirs="$noconfigdirs ld target-libgloss"
6599da04
JM
650 ;;
651 i[3456]86-*-sco*)
652 noconfigdirs="$noconfigdirs gprof target-libgloss"
653 ;;
654 i[3456]86-*-solaris2*)
655 # The linker does static linking correctly, but the Solaris C library
656 # has bugs such that some important functions won't work when statically
657 # linked. (See man pages for getpwuid, for example.)
658 noconfigdirs="$noconfigdirs ld target-libgloss"
659 ;;
660 i[3456]86-*-sysv4*)
661 # The SYSV4 C compiler doesn't handle Emacs correctly
662 case "${CC}" in
663 "" | cc*) noconfigdirs="$noconfigdirs emacs emacs19" ;;
664 *) ;;
665 esac
666 # but that's okay since emacs doesn't work anyway
667 noconfigdirs="$noconfigdirs emacs emacs19 target-libgloss"
668 ;;
669 mn10200-*-*)
5d4a5ee6
JL
670 noconfigdirs="$noconfigdirs"
671 if [ x${is_cross_compiler} != xno ] ; then
672 target_configdirs="${target_configdirs} target-libstub target-cygmon"
673 fi
6599da04
JM
674 ;;
675 mn10300-*-*)
5d4a5ee6
JL
676 noconfigdirs="$noconfigdirs"
677 if [ x${is_cross_compiler} != xno ] ; then
678 target_configdirs="${target_configdirs} target-libstub target-cygmon"
679 fi
6599da04
JM
680 ;;
681 powerpc-*-aix*)
682 # copied from rs6000-*-* entry
5d4a5ee6 683 noconfigdirs="$noconfigdirs gprof cvssrc target-libgloss"
6599da04
JM
684 # This is needed until gcc and ld are fixed to work together.
685 use_gnu_ld=no
686 ;;
687 powerpc*-*-winnt* | powerpc*-*-pe* | ppc*-*-pe)
688 target_configdirs="$target_configdirs target-winsup"
5d4a5ee6 689 noconfigdirs="$noconfigdirs gdb tcl tk make expect target-libgloss itcl tix db snavigator gnuserv"
6599da04
JM
690 # always build newlib.
691 skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
692 ;;
693 # This is temporary until we can link against shared libraries
694 powerpcle-*-solaris*)
5d4a5ee6 695 noconfigdirs="$noconfigdirs gdb sim make tcl tk expect itcl tix db snavigator gnuserv"
6599da04
JM
696 ;;
697 rs6000-*-lynxos*)
698 # The CVS server code doesn't work on the RS/6000
699 # Newlib makes problems for libg++ in crosses.
5d4a5ee6 700 noconfigdirs="$noconfigdirs target-newlib gprof cvssrc"
6599da04
JM
701 ;;
702 rs6000-*-aix*)
703 noconfigdirs="$noconfigdirs gprof"
704 # This is needed until gcc and ld are fixed to work together.
705 use_gnu_ld=no
706 ;;
707 rs6000-*-*)
708 noconfigdirs="$noconfigdirs gprof"
709 ;;
710 m68k-apollo-*)
711 noconfigdirs="$noconfigdirs ld binutils gprof target-libgloss"
712 ;;
713 mips*-*-irix5*)
714 # The GNU linker does not support shared libraries.
715 # emacs is emacs 18, which does not work on Irix 5 (emacs19 does work)
716 noconfigdirs="$noconfigdirs ld gprof emacs target-libgloss"
717 ;;
718 mips*-*-irix6*)
719 # The GNU assembler and linker do not support IRIX 6.
720 # emacs is emacs 18, which does not work on Irix 5 (emacs19 does work)
721 noconfigdirs="$noconfigdirs ld gas gprof emacs target-libgloss"
722 ;;
723 mips*-dec-bsd*)
724 noconfigdirs="$noconfigdirs gprof target-libgloss"
725 ;;
726 mips*-*-bsd*)
727 noconfigdirs="$noconfigdirs gprof target-libgloss"
728 ;;
5d4a5ee6
JL
729 mipstx39-*-*)
730 noconfigdirs="$noconfigdirs gprof" # same as generic mips
731 target_configdirs="${target_configdirs} target-libstub target-cygmon"
732 ;;
6599da04
JM
733 mips*-*-*)
734 noconfigdirs="$noconfigdirs gprof"
735 ;;
736 romp-*-*)
737 noconfigdirs="$noconfigdirs bfd binutils ld gas opcodes target-libgloss"
738 ;;
739 sh-*-*)
740 case "${host}" in
741 i[3456]86-*-vsta) ;; # don't add gprof back in
742 i[3456]86-*-go32*) ;; # don't add gprof back in
743 i[3456]86-*-msdosdjgpp*) ;; # don't add gprof back in
744 *) skipdirs=`echo " ${skipdirs} " | sed -e 's/ gprof / /'` ;;
745 esac
746 noconfigdirs="$noconfigdirs target-libgloss"
747 ;;
5d4a5ee6
JL
748 sparc-*-elf*)
749 if [ x${is_cross_compiler} != xno ] ; then
750 target_configdirs="${target_configdirs} target-libstub target-cygmon"
751 fi
752 ;;
753 sparc64-*-elf*)
754 if [ x${is_cross_compiler} != xno ] ; then
755 target_configdirs="${target_configdirs} target-libstub target-cygmon"
756 fi
757 ;;
758 sparclite-*-aout*)
759 if [ x${is_cross_compiler} != xno ] ; then
760 target_configdirs="${target_configdirs} target-libstub target-cygmon"
761 fi
762 ;;
6599da04
JM
763 sparc-*-sunos4*)
764 if [ x${is_cross_compiler} != xno ] ; then
765 noconfigdirs="$noconfigdirs gdb gdbtest target-newlib target-libgloss"
766 else
767 use_gnu_ld=no
768 fi
769 ;;
770 v810-*-*)
771 noconfigdirs="$noconfigdirs bfd binutils gas gcc gdb ld target-libio target-libg++ target-libstdc++ opcodes target-libgloss"
772 ;;
5d4a5ee6
JL
773 v850-*-*)
774 noconfigdirs="$noconfigdirs target-libgloss"
775 ;;
6599da04
JM
776 vax-*-vms)
777 noconfigdirs="$noconfigdirs bfd binutils gdb ld target-newlib opcodes target-libgloss"
778 ;;
779 vax-*-*)
780 noconfigdirs="$noconfigdirs target-newlib target-libgloss"
781 ;;
782 *-*-lynxos*)
783 # Newlib makes problems for libg++ in crosses.
784 noconfigdirs="$noconfigdirs target-newlib target-libgloss"
785 ;;
786 *-*-macos* | \
787 *-*-mpw*)
788 # Macs want a resource compiler.
789 configdirs="$configdirs grez"
790 ;;
791esac
792
6599da04
JM
793# If we aren't building newlib, then don't build libgloss, since libgloss
794# depends upon some newlib header files.
795case "${noconfigdirs}" in
796 *target-libgloss*) ;;
797 *target-newlib*) noconfigdirs="$noconfigdirs target-libgloss" ;;
798esac
799
6599da04
JM
800# Make sure we don't let GNU ld be added if we didn't want it.
801if [ x$with_gnu_ld = xno ]; then
802 use_gnu_ld=no
803 noconfigdirs="$noconfigdirs ld"
804fi
805
806# Make sure we don't let GNU as be added if we didn't want it.
807if [ x$with_gnu_as = xno ]; then
808 use_gnu_as=no
809 noconfigdirs="$noconfigdirs gas"
810fi
811
812# Remove the entries in $skipdirs and $noconfigdirs from $configdirs and
813# $target_configdirs.
814# If we have the source for $noconfigdirs entries, add them to $notsupp.
815
816notsupp=""
817for dir in . $skipdirs $noconfigdirs ; do
818 dirname=`echo $dir | sed -e s/target-//g`
819 if [ $dir != . ] && echo " ${configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
820 configdirs=`echo " ${configdirs} " | sed -e "s/ ${dir} / /"`
821 if [ -r $srcdir/$dirname/configure ] \
822 || [ -r $srcdir/$dirname/configure.in ]; then
823 if echo " ${skipdirs} " | grep " ${dir} " >/dev/null 2>&1; then
824 true
825 else
826 notsupp="$notsupp $dir"
827 fi
828 fi
829 fi
830 if [ $dir != . ] && echo " ${target_configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
831 target_configdirs=`echo " ${target_configdirs} " | sed -e "s/ ${dir} / /"`
832 if [ -r $srcdir/$dirname/configure ] \
833 || [ -r $srcdir/$dirname/configure.in ]; then
834 if echo " ${skipdirs} " | grep " ${dir} " >/dev/null 2>&1; then
835 true
836 else
837 notsupp="$notsupp $dir"
838 fi
839 fi
840 fi
841done
842
843# Sometimes the tools are distributed with libiberty but with no other
844# libraries. In that case, we don't want to build target-libiberty.
845if [ -n "${target_configdirs}" ]; then
846 others=
847 for i in `echo ${target_configdirs} | sed -e s/target-//g` ; do
848 if [ "$i" != "libiberty" ]; then
849 if [ -r $srcdir/$i/configure ] || [ -r $srcdir/$i/configure.in ]; then
850 others=yes;
851 break;
852 fi
853 fi
854 done
855 if [ -z "${others}" ]; then
856 target_configdirs=
857 fi
858fi
859
860# Deconfigure all subdirectories, in case we are changing the
861# configuration from one where a subdirectory is supported to one where it
862# is not.
5d4a5ee6 863if [ -z "${norecursion}" ] && [ -n "${configdirs}" ]; then
6599da04
JM
864 for i in `echo ${configdirs} | sed -e s/target-//g` ; do
865 rm -f $i/Makefile
866 done
867fi
5d4a5ee6 868if [ -z "${norecursion}" ] && [ -n "${target_configdirs}" ]; then
6599da04
JM
869 for i in `echo ${target_configdirs} | sed -e s/target-//g` ; do
870 rm -f ${target_subdir}/$i/Makefile
871 done
872fi
873
874# Produce a warning message for the subdirs we can't configure.
875# This isn't especially interesting in the Cygnus tree, but in the individual
876# FSF releases, it's important to let people know when their machine isn't
877# supported by the one or two programs in a package.
878
879if [ -n "${notsupp}" ] && [ -z "${norecursion}" ]; then
880 # If $appdirs is non-empty, at least one of those directories must still
881 # be configured, or we error out. (E.g., if the gas release supports a
882 # specified target in some subdirs but not the gas subdir, we shouldn't
883 # pretend that all is well.)
884 if [ -n "$appdirs" ]; then
885 for dir in $appdirs ; do
886 if [ -r $dir/Makefile.in ]; then
887 if echo " ${configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
888 appdirs=""
889 break
890 fi
891 if echo " ${target_configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
892 appdirs=""
893 break
894 fi
895 fi
896 done
897 if [ -n "$appdirs" ]; then
898 echo "*** This configuration is not supported by this package." 1>&2
899 exit 1
900 fi
901 fi
902 # Okay, some application will build, or we don't care to check. Still
903 # notify of subdirs not getting built.
904 echo "*** This configuration is not supported in the following subdirectories:" 1>&2
905 echo " ${notsupp}" 1>&2
906 echo " (Any other directories should still work fine.)" 1>&2
907fi
908
909# Set with_gnu_as and with_gnu_ld as appropriate.
910#
911# This is done by determining whether or not the appropriate directory
912# is available, and by checking whether or not specific configurations
913# have requested that this magic not happen.
914#
915# The command line options always override the explicit settings in
916# configure.in, and the settings in configure.in override this magic.
917#
918# If the default for a toolchain is to use GNU as and ld, and you don't
919# want to do that, then you should use the --without-gnu-as and
920# --without-gnu-ld options for the configure script.
921
922if [ x${use_gnu_as} = x ] ; then
923 if [ x${with_gnu_as} != xno ] && echo " ${configdirs} " | grep " ${gasdir} " > /dev/null 2>&1 && [ -d ${srcdir}/${gasdir} ] ; then
924 with_gnu_as=yes
925 withoptions="$withoptions --with-gnu-as"
926 fi
927fi
928
929if [ x${use_gnu_ld} = x ] ; then
930 if [ x${with_gnu_ld} != xno ] && echo " ${configdirs} " | grep " ld " > /dev/null 2>&1 && [ -d ${srcdir}/ld ] ; then
931 with_gnu_ld=yes
932 withoptions="$withoptions --with-gnu-ld"
933 fi
934fi
935
936# If using newlib, add --with-newlib to the withoptions so that gcc/configure
937# can detect this case.
938
939if [ x${with_newlib} != xno ] && echo " ${target_configdirs} " | grep " target-newlib " > /dev/null 2>&1 && [ -d ${srcdir}/newlib ] ; then
940 with_newlib=yes
941 withoptions="$withoptions --with-newlib"
942fi
943
944if [ x${shared} = xyes ]; then
945 case "${target}" in
e2de3a46
L
946 hppa*)
947 target_makefile_frag="${target_makefile_frag} config/mt-papic"
948 ;;
949 i[3456]86-*)
950 target_makefile_frag="${target_makefile_frag} config/mt-x86pic"
951 ;;
952 powerpc*-*)
953 target_makefile_frag="${target_makefile_frag} config/mt-ppcpic"
954 ;;
b104e095 955 alpha*-*-linux*)
e2de3a46
L
956 target_makefile_frag="${target_makefile_frag} config/mt-elfalphapic"
957 ;;
958 *)
520ab477 959 if test -f ${srcdir}/config/mt-${target_cpu}pic; then
4bcdb76d
AO
960 target_makefile_frag="${target_makefile_frag} config/mt-${target_cpu}pic"
961 fi
e2de3a46 962 ;;
6599da04
JM
963 esac
964fi
965
e2de3a46
L
966rm -f mt-frag
967if [ -n "${target_makefile_frag}" ] ; then
968 for f in ${target_makefile_frag}
969 do
970 cat ${srcdir}/$f >> mt-frag
971 done
972 target_makefile_frag=mt-frag
973fi
974
6599da04
JM
975# post-target:
976
977# Make sure that the compiler is able to generate an executable. If it
978# can't, we are probably in trouble. We don't care whether we can run the
979# executable--we might be using a cross compiler--we only care whether it
980# can be created. At this point the main configure script has set CC.
981echo "int main () { return 0; }" > conftest.c
982${CC} -o conftest ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} conftest.c
5d4a5ee6 983if [ $? = 0 ] && [ -s conftest -o -s conftest.exe ]; then
6599da04
JM
984 :
985else
986 echo 1>&2 "*** The command '${CC} -o conftest ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} conftest.c' failed."
987 echo 1>&2 "*** You must set the environment variable CC to a working compiler."
988 rm -f conftest*
989 exit 1
990fi
991rm -f conftest*
992
993# The Solaris /usr/ucb/cc compiler does not appear to work.
994case "${host}" in
995 sparc-sun-solaris2*)
996 CCBASE="`echo ${CC-cc} | sed 's/ .*$//'`"
997 if [ "`/usr/bin/which $CCBASE`" = "/usr/ucb/cc" ] ; then
998 could_use=
999 [ -d /opt/SUNWspro/bin ] && could_use="/opt/SUNWspro/bin"
1000 if [ -d /opt/cygnus/bin ] ; then
1001 if [ "$could_use" = "" ] ; then
1002 could_use="/opt/cygnus/bin"
1003 else
1004 could_use="$could_use or /opt/cygnus/bin"
1005 fi
1006 fi
1007 if [ "$could_use" = "" ] ; then
1008 echo "Warning: compilation may fail because you're using"
1009 echo "/usr/ucb/cc. You should change your PATH or CC "
1010 echo "variable and rerun configure."
1011 else
1012 echo "Warning: compilation may fail because you're using"
1013 echo "/usr/ucb/cc, when you should use the C compiler from"
1014 echo "$could_use. You should change your"
1015 echo "PATH or CC variable and rerun configure."
1016 fi
1017 fi
1018 ;;
1019esac
1020
1021# If --enable-shared was set, we must set LD_LIBRARY_PATH so that the
1022# binutils tools will find libbfd.so.
1023if [ "${shared}" = "yes" ]; then
1024 sed -e 's/^SET_LIB_PATH[ ]*=.*$/SET_LIB_PATH = $(REALLY_SET_LIB_PATH)/' \
1025 Makefile > Makefile.tem
1026 rm -f Makefile
1027 mv -f Makefile.tem Makefile
1028
1029 case "${host}" in
1030 *-*-hpux*)
5d4a5ee6 1031 sed -e 's/^RPATH_ENVVAR[ ]*=.*$/RPATH_ENVVAR = SHLIB_PATH/' \
6599da04
JM
1032 Makefile > Makefile.tem
1033 rm -f Makefile
1034 mv -f Makefile.tem Makefile
1035 ;;
1036 esac
1037fi
1038
6599da04
JM
1039# Record target_configdirs and the configure arguments in Makefile.
1040target_configdirs=`echo "${target_configdirs}" | sed -e 's/target-//g'`
1041targargs=`echo "${arguments}" | \
5d4a5ee6 1042 sed -e 's/--no[^ ]*//' \
6599da04
JM
1043 -e 's/--cache[a-z-]*=[^ ]*//' \
1044 -e 's/--ho[a-z-]*=[^ ]*//' \
1045 -e 's/--bu[a-z-]*=[^ ]*//' \
1046 -e 's/--ta[a-z-]*=[^ ]*//'`
1047
1048# Passing a --with-cross-host argument lets the target libraries know
1049# whether they are being built with a cross-compiler or being built
1050# native. However, it would be better to use other mechanisms to make the
1051# sorts of decisions they want to make on this basis. Please consider
1052# this option to be deprecated. FIXME.
1053if [ x${is_cross_compiler} = xyes ]; then
1054 targargs="--with-cross-host=${host_alias} ${targargs}"
1055fi
1056
1057# Default to --enable-multilib.
1058if [ x${enable_multilib} = x ]; then
1059 targargs="--enable-multilib ${targargs}"
1060fi
1061
5d4a5ee6
JL
1062# Pass --with-newlib if appropriate. Note that target_configdirs has
1063# changed from the earlier setting of with_newlib.
1064if [ x${with_newlib} != xno ] && echo " ${target_configdirs} " | grep " newlib " > /dev/null 2>&1 && [ -d ${srcdir}/newlib ] ; then
1065 targargs="--with-newlib ${targargs}"
1066fi
1067
6599da04
JM
1068targargs="--host=${target_alias} --build=${build_alias} ${targargs}"
1069sed -e "s:^TARGET_CONFIGDIRS[ ]*=.*$:TARGET_CONFIGDIRS = ${target_configdirs}:" \
1070 -e "s%^CONFIG_ARGUMENTS[ ]*=.*$%CONFIG_ARGUMENTS = ${targargs}%" \
1071 -e "s%^TARGET_SUBDIR[ ]*=.*$%TARGET_SUBDIR = ${target_subdir}%" \
1072 Makefile > Makefile.tem
1073rm -f Makefile
1074mv -f Makefile.tem Makefile
1075
1076#
1077# Local Variables:
1078# fill-column: 131
1079# End:
1080#
This page took 0.172613 seconds and 5 git commands to generate.