see devo/configure 1.11
[binutils-gdb.git] / gas / configure
1 #!/bin/sh
2 # Please do not edit this file. It is generated automatically from
3 # configure.in and a configure template.
4 configdirs=
5
6 #!/bin/sh
7
8 # Configuration script template
9 # Copyright (C) 1988, 1990, 1991 Free Software Foundation, Inc.
10
11 #This file is part of GNU.
12
13 #GNU CC is free software; you can redistribute it and/or modify
14 #it under the terms of the GNU General Public License as published by
15 #the Free Software Foundation; either version 1, or (at your option)
16 #any later version.
17
18 #GNU CC is distributed in the hope that it will be useful,
19 #but WITHOUT ANY WARRANTY; without even the implied warranty of
20 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 #GNU General Public License for more details.
22
23 #You should have received a copy of the GNU General Public License
24 #along with GNU CC; see the file COPYING. If not, write to
25 #the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
26
27 # $Id$
28
29 #
30 # Shell script to create proper links to machine-dependent files in
31 # preparation for compilation.
32 #
33 # If configure succeeds, it leaves its status in config.status.
34 # If configure fails after disturbing the status quo,
35 # config.status is removed.
36 #
37
38 remove=rm
39 hard_link=ln
40 symbolic_link='ln -s'
41
42 #for Test
43 #remove="echo rm"
44 #hard_link="echo ln"
45 #symbolic_link="echo ln -s"
46
47 progname=$0
48
49 # clear some things potentially inherited from environment.
50 ansi=
51 defaulttargets=
52 destdir=
53 fatal=
54 hostsubdir=
55 norecurse=
56 removing=
57 srcdir=
58 srctrigger=
59 target=
60 targets=
61 targetsubdir=
62 template=
63 verbose=
64
65 for arg in $*;
66 do
67 case ${arg} in
68 -ansi | +ansi)
69 ansi=true
70 ;;
71 -destdir=* | +destdir=* | +destdi=* | +destd=* | +dest=* | +des=* | +de=* | +d=*)
72 destdir=`echo ${arg} | sed 's/[+-]d[a-z]*=//'`
73 ;;
74 -forcesubdirs | +forcesubdirs | +forcesubdir | +forcesubdi | +forcesubd \
75 | +forcesub | +forcesu | +forces | +force | +forc | +for | +fo | +f)
76 forcesubdirs=${arg}
77 ;;
78 -languages=* | +languages=* | +language=* | +languag=* \
79 | +langua=* | +langu=* | +lang=* | +lan=* | +la=* \
80 | +l=*)
81 languages="${languages} `echo ${arg} | sed 's/[+-]l[a-z]*=//'`"
82 ;;
83 -gas | +gas | +ga | +g)
84 gas=yes
85 ;;
86 -help | +h | +help)
87 fatal=true
88 ;;
89 -nfp | +nfp | +nf | +n)
90 nfp=yes
91 ;;
92 -norecurse | +norecurse)
93 norecurse=true
94 ;;
95 -rm | +rm)
96 removing=${arg}
97 ;;
98 # -srcdir=* | +srcdir=* | +srcdi=* | +srcd=* | +src=* | +sr=* | +s=*)
99 # srcdir=`echo ${arg} | sed 's/[+-]s[a-z]*=//'`
100 # ;;
101 -target=* | +target=* | +targe=* | +targ=* | +tar=* | +ta=* | +t=*)
102 if [ -n "${targets}" ] ; then
103 forcesubdirs="+forcesubdirs"
104 fi
105
106 newtargets="${targets} `echo ${arg} | sed 's/[+-]t[a-z]*=//'`"
107 targets="${newtargets}"
108 ;;
109 -template=* | +template=*)
110 template=`echo ${arg} | sed 's/[+-]template=//'`
111 ;;
112 +verbose | +verbos | +verbo | +verb | +ver | +ve | +v)
113 verbose=${arg}
114 ;;
115 -* | +*)
116 (echo ;
117 echo "Unrecognized option: \"${arg}\"". ;
118 echo) 1>&2
119 fatal=true
120 ;;
121 *)
122 if [ -n "${hosts}" ] ; then
123 forcesubdirs="+forcesubdirs"
124 fi
125
126 newhosts="${hosts} ${arg}"
127 hosts=${newhosts}
128 ;;
129 esac
130 done
131
132 if [ -n "${verbose}" ] ; then
133 echo `pwd`/configure $*
134 echo targets=\"${targets}\"
135 fi
136
137 # process host and target only if not rebuilding configure itself or removing.
138 if [ -z "${template}" -a -z "${removing}" -a -z "${fatal}" ] ; then
139 # Complain if an arg is missing
140 if [ -z "${hosts}" ] ; then
141 (echo ;
142 echo "configure: No HOST specified." ;
143 echo) 2>&1
144 fatal=true
145 fi
146 fi
147
148 if [ -n "${fatal}" -o "${hosts}" = "help" ] ; then
149 (echo "Usage: configure HOST" ;
150 echo ;
151 echo "Options: [defaults in brackets]" ;
152 echo " +ansi configure w/ANSI library. [no ansi lib]" ;
153 echo " +destdir=MYDIR configure for installation into MYDIR. [/usr/local]" ;
154 echo " +forcesubdirs configure in subdirectories. [in source directories]" ;
155 echo " +lang=LANG configure to build LANG. [gcc]" ;
156 echo " +help print this message. [normal config]" ;
157 echo " +gas configure the compilers for use with gas. [native as]" ;
158 echo " +nfp configure the compilers default to soft floating point. [hard float]" ;
159 echo " +norecurse configure this directory only. [recurse]" ;
160 echo " +rm remove this configuration. [build a configuration]" ;
161 echo " +target=TARGET configure for TARGET. [TARGET = HOST]" ;
162 echo " +template=TEM rebuild configure using TEM. [normal config]" ;
163 echo ;
164 echo "Where HOST and TARGET are something like \"vax\", \"sun3\", \"encore\", etc." ;
165 echo "Asking for more than one \"+target\" implies \"+forcesubdirs\". Any other" ;
166 echo "options given will apply to all targets.") 1>&2
167
168 if [ -r config.status ] ; then
169 cat config.status
170 fi
171
172 exit 1
173 fi
174
175 #### configure.in common parts come in here.
176 # This file is a shell script that supplies the information necessary
177 # to tailor a template configure script into the configure script
178 # appropriate for this directory. For more information, check any
179 # existing configure script.
180
181 srctrigger=as.c
182 srcname="gas"
183
184 ## end of common part.
185
186 # are we rebuilding config itself?
187 if [ -n "${template}" ] ; then
188 if [ ! -r ${template} ] ; then
189 echo "Can't find template ${template}."
190 exit 1
191 fi
192
193 # prep the template
194 sed -e '/^#### configure.in common parts come in here.$/,/^## end of common part.$/c\
195 #### configure.in common parts come in here.\
196 ## end of common part.' \
197 -e '/^#### configure.in per-host parts come in here.$/,/^## end of per-host part.$/c\
198 #### configure.in per-host parts come in here.\
199 ## end of per-host part.' \
200 -e '/^#### configure.in per-target parts come in here.$/,/^## end of per-target part.$/c\
201 #### configure.in per-target parts come in here.\
202 ## end of per-target part.' \
203 < ${template} > template.new
204
205 if [ -r configure.in ] ; then
206 if [ -z "`grep '^# per\-host:' configure.in`" ] ; then
207 echo `pwd`/configure.in has no "per-host:" line.
208 exit 1
209 fi
210
211 if [ -z "`grep '^# per\-target:' configure.in`" ] ; then
212 echo `pwd`/configure.in has no "per-target:" line.
213 exit 1
214 fi
215
216 # split configure.in into common, per-host, and per-target parts
217 sed -e '/^# per\-host:/,$d' configure.in > configure.com
218 sed -e '1,/^# per\-host:/d' -e '/^# per\-target:/,$d' configure.in > configure.hst
219 sed -e '1,/^# per\-target:/d' configure.in > configure.tgt
220
221 # and insert them
222 sed -e '/^#### configure.in common parts come in here.$/ r configure.com' \
223 -e '/^#### configure.in per\-host parts come in here.$/ r configure.hst' \
224 -e '/^#### configure.in per\-target parts come in here.$/ r configure.tgt' \
225 template.new > configure.new
226
227 rm -f configure.com configure.tgt configure.hst
228 else
229 echo Warning: no configure.in in `pwd`
230 cat ${template} >> configure
231 fi
232
233 chmod a+x configure.new
234 rm template.new
235 # mv configure configure.old
236 mv configure.new configure
237 echo Rebuilt configure in `pwd`
238
239 if [ -z "${norecurse}" ] ; then
240 while [ -n "${configdirs}" ] ; do
241 # set configdir to car of configdirs, configdirs to cdr of configdirs
242 set ${configdirs}; configdir=$1; shift; configdirs=$*
243
244 if [ "`echo ${configdir}.*`" != "${configdir}.*" ] ; then
245 targetspecificdirs=${configdir}.*
246 else
247 targetspecificdirs=
248 fi
249
250 for i in ${configdir} ${targetspecificdirs} ; do
251 if [ -r $i/configure ] ; then
252 (cd $i ;
253 ./configure +template=${template} ${verbose})
254 else
255 echo No configure script in `pwd`/$i
256 fi
257 done
258 done
259 fi
260
261 exit 0
262 fi
263
264 # some sanity checks on configure.in
265 if [ -z "${srctrigger}" ] ; then
266 echo srctrigger not set in configure.in. `pwd` not configured.
267 exit 1
268 fi
269
270 for host in ${hosts} ; do
271 # Default other arg
272 if [ -z "${targets}" -o -n "${defaulttargets}" ] ; then
273 targets=${host}
274 defaulttargets=true
275 fi
276
277 #### configure.in per-host parts come in here.
278
279 ## end of per-host part.
280
281
282 for target in ${targets} ; do
283
284 if [ -n "${verbose}" ] ; then
285 echo " "target=\"${target}\"
286 fi
287
288 #### configure.in per-target parts come in here.
289
290 # assign cpu type
291 case ${target} in
292 sun4* | sparc*)
293 cpu_type=sparc
294 ;;
295 sun3*)
296 cpu_type=m68k
297 ;;
298 i386*)
299 cpu_type=i386
300 ;;
301 i960*)
302 cpu_type=i960
303 ;;
304 a29k*)
305 cpu_type=a29k
306 ;;
307 *)
308 cpu_type=generic
309 ;;
310 esac
311
312 # assign object format
313 case ${target} in
314 *-coff)
315 obj_format=coff
316 ;;
317 *-bout)
318 obj_format=bout
319 ;;
320 generic)
321 obj_format=generic
322 ;;
323 *)
324 obj_format=aout
325 ;;
326 esac
327
328 # assign floating point type
329 case ${target} in
330 vax)
331 atof=vax
332 ;;
333 *)
334 atof=ieee
335 ;;
336 esac
337
338 files="config/ho-${host}.h config/tc-${cpu_type}.c \
339 config/tc-${cpu_type}.h config/te-generic.h \
340 config/obj-${obj_format}.h config/obj-${obj_format}.c \
341 config/atof-${atof}.c"
342
343 links="host.h targ-cpu.c targ-cpu.h targ-env.h obj-format.h obj-format.c atof-targ.c"
344 ## end of per-target part.
345
346 # Temporarily, we support only direct subdir builds.
347 hostsubdir=Host-${host}
348 targetsubdir=Target-${target}
349
350 if [ -n "${removing}" ] ; then
351 if [ -n "${forcesubdirs}" ] ; then
352 if [ -d "${hostsubdir}" ] ; then
353 rm -rf ${hostsubdir}/${targetsubdir}
354
355 if [ -z "`(ls ${hostsubdir}) 2>&1 | grep Target-`" ] ; then
356 rm -rf ${hostsubdir}
357 fi
358 else
359 echo Warning: no `pwd`/${hostsubdir} to remove.
360 fi
361 else
362 rm -f Makefile config.status ${links}
363 fi
364 else
365 if [ -n "${forcesubdirs}" ] ; then
366 # check for existing status before allowing forced subdirs.
367 if [ -f Makefile ] ; then
368 echo "Makefile already exists in source directory. `pwd` not configured."
369 exit 1
370 fi
371
372 if [ ! -d ${hostsubdir} ] ; then mkdir ${hostsubdir} ; fi
373 cd ${hostsubdir}
374
375 if [ ! -d ${targetsubdir} ] ; then mkdir ${targetsubdir} ; fi
376 cd ${targetsubdir}
377
378 srcdir=../..
379 else
380 # if not subdir builds, then make sure none exist.
381 if [ -n "`(ls .) 2>&1 | grep Host-`" ] ; then
382 echo "Configured subdirs exist. `pwd` not configured."
383 exit 1
384 fi
385 fi
386
387 # Find the source files, if location was not specified.
388 if [ -z "${srcdir}" ] ; then
389 srcdirdefaulted=1
390 srcdir=.
391 if [ -n "${srctrigger}" -a ! -r ${srctrigger} ] ; then
392 srcdir=..
393 fi
394 fi
395
396 if [ -n "${srctrigger}" -a ! -r ${srcdir}/${srctrigger} ] ; then
397 if [ -z "${srcdirdefaulted}" ] ; then
398 echo "${progname}: Can't find ${srcname} sources in `pwd`/${srcdir}" 1>&2
399 else
400 echo "${progname}: Can't find ${srcname} sources in `pwd`/. or `pwd`/.." 1>&2
401 fi
402
403 echo \(At least ${srctrigger} is missing.\) 1>&2
404 exit 1
405 fi
406
407 # Set up the list of links to be made.
408 # ${links} is the list of link names, and ${files} is the list of names to link to.
409
410 # Make the links.
411 while [ -n "${files}" ] ; do
412 # set file to car of files, files to cdr of files
413 set ${files}; file=$1; shift; files=$*
414 set ${links}; link=$1; shift; links=$*
415
416 if [ ! -r ${srcdir}/${file} ] ; then
417 echo "${progname}: cannot create a link \"${link}\"," 1>&2
418 echo "since the file \"${file}\" does not exist." 1>&2
419 exit 1
420 fi
421
422 ${remove} -f ${link}
423 rm -f config.status
424 # Make a symlink if possible, otherwise try a hard link
425 ${symbolic_link} ${srcdir}/${file} ${link} 2>/dev/null || ${hard_link} ${srcdir}/${file} ${link}
426
427 if [ ! -r ${link} ] ; then
428 echo "${progname}: unable to link \"${link}\" to \"${srcdir}/${file}\"." 1>&2
429 exit 1
430 fi
431 echo "Linked \"${link}\" to \"${srcdir}/${file}\"."
432 done
433
434 # Create a .gdbinit file which runs the one in srcdir
435 # and tells GDB to look there for source files.
436
437 case ${srcdir} in
438 .)
439 ;;
440 *)
441 echo "dir ." > .gdbinit
442 echo "dir ${srcdir}" >> .gdbinit
443 echo "source ${srcdir}/.gdbinit" >> .gdbinit
444 ;;
445 esac
446
447 # Install a makefile, and make it set VPATH
448 # if necessary so that the sources are found.
449 # Also change its value of srcdir.
450
451 # FIXME-someday: This business of always writing to .tem and mv back
452 # is so that I don't screw things up while developing. Once this
453 # template is stable, these should be optimized. xoxorich.
454
455 # Define macro CROSS_COMPILE in compilation if this is a cross-compiler.
456 if [ "${host}" != "${target}" ] ; then
457 echo "CROSS=-DCROSS_COMPILE" > Makefile
458 echo "ALL=start.encap" >> Makefile
459 else
460 echo "ALL=all.internal" > Makefile
461 fi
462
463 # set target, host, VPATH
464 echo "host = ${host}" >> Makefile
465 echo "target = ${target}" >> Makefile
466
467 if [ -n "${forcesubdirs}" ] ; then
468 echo "subdir = /${hostsubdir}/${targetsubdir}" >> Makefile
469 else
470 echo "subdir =" >> Makefile
471 fi
472
473 # echo "workdir = `pwd`" >> Makefile
474 echo "VPATH = ${srcdir}" >> Makefile
475
476 # add Makefile.in
477 cat ${srcdir}/Makefile.in >> Makefile
478
479 # and shake thoroughly.
480 host_var_file=hmake-${host}
481 target_var_file=tmake-${target}
482
483 # Conditionalize the makefile for this host.
484 if [ -f ${srcdir}/config/${host_var_file} ] ; then
485 sed -e "/^####/ r ${srcdir}/config/${host_var_file}" Makefile > Makefile.tem
486 mv Makefile.tem Makefile
487 fi
488
489 # Conditionalize the makefile for this target.
490 if [ -f ${srcdir}/config/${target_var_file} ] ; then
491 sed -e "/^####/ r ${srcdir}/config/${target_var_file}" Makefile > Makefile.tem
492 mv Makefile.tem Makefile
493 fi
494
495 # set srcdir
496 sed "s@^srcdir = \.@srcdir = ${srcdir}@" Makefile > Makefile.tem
497 mv Makefile.tem Makefile
498
499 # set destdir
500 if [ -n "${destdir}" ] ; then
501 sed "s:^destdir =.*$:destdir = ${destdir}:" Makefile > Makefile.tem
502 mv Makefile.tem Makefile
503 fi
504
505 # Remove all formfeeds, since some Makes get confused by them.
506 sed "s/\f//" Makefile >> Makefile.tem
507 mv Makefile.tem Makefile
508
509 # reset SUBDIRS
510 sed "s:^SUBDIRS =.*$:SUBDIRS = ${configdirs}:" Makefile > Makefile.tem
511 mv Makefile.tem Makefile
512
513 # reset NONSUBDIRS
514 sed "s:^NONSUBDIRS =.*$:NONSUBDIRS = ${noconfigdirs}:" Makefile > Makefile.tem
515 mv Makefile.tem Makefile
516
517 using=
518 if [ -f ${srcdir}/config/${host_var_file} ] ; then
519 using=" using \"${host_var_file}\""
520 fi
521
522 if [ -f ${srcdir}/config/${target_var_file} ] ; then
523 if [ -z "${using}" ] ; then
524 andusing=" using \"${target_var_file}\""
525 else
526 andusing="${using} and \"${target_var_file}\""
527 fi
528 else
529 andusing=${using}
530 fi
531
532 echo "Created \"Makefile\"" in `pwd`${andusing}.
533
534 if [ "${host}" = "${target}" ] ; then
535 echo "Links are now set up for use with a ${target}." \
536 > config.status
537 # | tee ${srcdir}/config.status
538 else
539 echo "Links are now set up for host ${host} and target ${target}." \
540 > config.status
541 # | tee ${srcdir}/config.status
542 fi
543
544 originaldir=`pwd`
545 cd ${srcdir}
546 fi
547 done # for each target
548
549 # # Now build a Makefile for this host.
550 # if [ -n "${forcesubdirs}" ] ; then
551 # cd ${hostsubdir}
552 # cat > GNUmakefile << E!O!F
553 ## Makefile generated by configure for host ${host}.
554 #
555 #%:
556 # for i in ${targets} ; do \
557 # $(MAKE) -C Target-\$i \$@
558 #
559 #all clean stage1 stage2 stage3 stage4etags tags TAGS
560 #E!O!F
561 # fi
562 done # for each host
563
564 # If there are subdirectories, then recurse.
565
566 if [ -n "${norecurse}" -o -z "${configdirs}" ] ; then exit 0 ; fi
567
568 # configdirs is not null
569 for configdir in ${configdirs} ; do
570 echo Configuring ${configdir}...
571 specifics=
572 commons=
573
574 if [ -n "${defaulttargets}" ] ; then
575 for host in ${hosts} ; do
576 if [ -d ${configdir}.${host} ] ; then
577 newspecifics="${specifics} ${host}"
578 specifics=${newspecifics}
579 else
580 newcommons="${commons} ${host}"
581 commons=${newcommons}
582 fi # if target specific
583 done # for each host
584
585 if [ -n "${commons}" ] ; then
586 (cd ${configdir} ;
587 ./configure ${commons} ${verbose} ${forcesubdirs} ${removing}) \
588 | sed 's/^/ /'
589 fi # if any common hosts
590
591 if [ -n "${specifics}" ] ; then
592 for host in ${specifics} ; do
593 echo Configuring target specific directory ${configdir}.${host}...
594 (cd ${configdir}.${host} ;
595 ./configure ${host} ${verbose} ${forcesubdirs} ${removing}) \
596 | sed 's/^/ /'
597 done # for host in specifics
598 fi # if there are any specifics
599 else
600
601 for target in ${targets} ; do
602 if [ -d ${configdir}.${target} ] ; then
603 newspecifics="${specifics} ${target}"
604 specifics=${newspecifics}
605 else
606 newcommons="${commons} +target=${target}"
607 commons=${newcommons}
608 fi
609
610 done # check for target specific dir override
611
612 if [ -n "${verbose}" ] ; then
613 echo " "commons=\"${commons}\"
614 echo " "specifics=\"${specifics}\"
615 fi # if verbose
616
617 if [ -n "${commons}" ] ; then
618 (cd ${configdir} ;
619 ./configure ${hosts} ${verbose} ${forcesubdirs} ${removing} ${commons}) \
620 | sed 's/^/ /'
621 fi # if any commons
622
623 if [ -n "${specifics}" ] ; then
624 for target in ${specifics} ; do
625 echo Configuring target specific directory ${configdir}.${target}...
626 (cd ${configdir}.${target} ;
627 ./configure ${hosts} ${verbose} ${forcesubdirs} ${removing} "+target=${target}") \
628 | sed 's/^/ /'
629 done
630 fi # if any specifics
631 fi # not default targets
632 done
633
634 exit 0
635
636 #
637 # $Log$
638 # Revision 1.9 1991/05/14 14:14:08 rich
639 # see devo/configure 1.11
640 #
641 # Revision 1.10 1991/05/04 00:58:38 rich
642 # Fix program name bug.
643 #
644 # Revision 1.9 1991/05/03 19:14:18 rich
645 # Changed getopt to libiberty, commented out an aborted attempt at host
646 # level Makefiles because it caused errors on +rm, add a warning for
647 # directories expected to be removed on +rm but that don't exist.
648 #
649 # Revision 1.8 1991/04/24 16:50:59 rich
650 # Three staging checkpoint.
651 #
652 # Revision 1.7 1991/04/17 01:34:47 rich
653 # Added getopt for binutils, fixed problem with host dependancies in
654 # configure.template.
655 #
656 # Revision 1.6 1991/04/16 00:18:44 rich
657 # Now handles multiple hosts and targets.
658 #
659 # Revision 1.5 1991/04/15 23:43:44 rich
660 # Now handles multiple hosts and targets.
661 #
662 # Revision 1.4 1991/04/13 02:11:03 rich
663 # Config cut 3. We now almost install a29k.
664 #
665 # Revision 1.3 1991/04/11 02:41:54 rich
666 # Cut 2 config. Subdirs.
667 #
668 #
669 #
670
671 #
672 # Local Variables:
673 # fill-column: 131
674 # End:
675 #
676
677 # end of configure.template