2 # Please do not edit this file. It is generated automatically from
3 # configure.in and a configure template.
8 # Configuration script template
9 # Copyright (C) 1988, 1990, 1991 Free Software Foundation, Inc.
11 #This file is part of GNU.
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)
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.
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.
30 # Shell script to create proper links to machine-dependent files in
31 # preparation for compilation.
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.
45 #symbolic_link="echo ln -s"
49 # clear some things potentially inherited from environment.
71 -destdir=* | +destdir=* | +destdi=* | +destd=* | +dest=* | +des=* | +de=* | +d=*)
72 destdir=`echo ${arg} | sed 's/[+-]d[a-z]*=//'`
74 -forcesubdirs | +forcesubdirs | +forcesubdir | +forcesubdi | +forcesubd \
75 | +forcesub | +forcesu | +forces | +force | +forc | +for | +fo | +f)
78 -languages=* | +languages=* | +language=* | +languag=* \
79 | +langua=* | +langu=* | +lang=* | +lan=* | +la=* \
81 languages="${languages} `echo ${arg} | sed 's/[+-]l[a-z]*=//'`"
83 -gas | +gas | +ga | +g)
89 -nfp | +nfp | +nf | +n)
92 -norecurse | +norecurse)
98 # -srcdir=* | +srcdir=* | +srcdi=* | +srcd=* | +src=* | +sr=* | +s=*)
99 # srcdir=`echo ${arg} | sed 's/[+-]s[a-z]*=//'`
101 -target=* | +target=* | +targe=* | +targ=* | +tar=* | +ta=* | +t=*)
102 if [ -n "${targets}" ] ; then
103 forcesubdirs="+forcesubdirs"
106 newtargets="${targets} `echo ${arg} | sed 's/[+-]t[a-z]*=//'`"
107 targets="${newtargets}"
109 -template=* | +template=*)
110 template=`echo ${arg} | sed 's/[+-]template=//'`
112 +verbose | +verbos | +verbo | +verb | +ver | +ve | +v)
117 echo "Unrecognized option: \"${arg}\"". ;
122 if [ -n "${hosts}" ] ; then
123 forcesubdirs="+forcesubdirs"
126 newhosts="${hosts} ${arg}"
132 if [ -n "${verbose}" ] ; then
133 echo `pwd`/configure $*
134 echo targets=\"${targets}\"
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
142 echo "configure: No HOST specified." ;
148 if [ -n "${fatal}" -o "${hosts}" = "help" ] ; then
149 (echo "Usage: configure HOST" ;
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]" ;
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
168 if [ -r config.status ] ; then
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.
184 ## end of common part.
186 # are we rebuilding config itself?
187 if [ -n "${template}" ] ; then
188 if [ ! -r ${template} ] ; then
189 echo "Can't find template ${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
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.
211 if [ -z "`grep '^# per\-target:' configure.in`" ] ; then
212 echo `pwd`/configure.in has no "per-target:" line.
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
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
227 rm -f configure.com configure.tgt configure.hst
229 echo Warning: no configure.in in `pwd`
230 cat ${template} >> configure
233 chmod a+x configure.new
235 # mv configure configure.old
236 mv configure.new configure
237 echo Rebuilt configure in `pwd`
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=$*
244 if [ "`echo ${configdir}.*`" != "${configdir}.*" ] ; then
245 targetspecificdirs=${configdir}.*
250 for i in ${configdir} ${targetspecificdirs} ; do
251 if [ -r $i/configure ] ; then
253 ./configure +template=${template} ${verbose})
255 echo No configure script in `pwd`/$i
264 # some sanity checks on configure.in
265 if [ -z "${srctrigger}" ] ; then
266 echo srctrigger not set in configure.in. `pwd` not configured.
270 for host in ${hosts} ; do
272 if [ -z "${targets}" -o -n "${defaulttargets}" ] ; then
277 #### configure.in per-host parts come in here.
279 ## end of per-host part.
282 for target in ${targets} ; do
284 if [ -n "${verbose}" ] ; then
285 echo " "target=\"${target}\"
288 #### configure.in per-target parts come in here.
292 ## end of per-target part.
294 # Temporarily, we support only direct subdir builds.
295 hostsubdir=Host-${host}
296 targetsubdir=Target-${target}
298 if [ -n "${removing}" ] ; then
299 if [ -n "${forcesubdirs}" ] ; then
300 if [ -d "${hostsubdir}" ] ; then
301 rm -rf ${hostsubdir}/${targetsubdir}
303 if [ -z "`(ls ${hostsubdir}) 2>&1 | grep Target-`" ] ; then
307 echo Warning: no `pwd`/${hostsubdir} to remove.
310 rm -f Makefile config.status ${links}
313 if [ -n "${forcesubdirs}" ] ; then
314 # check for existing status before allowing forced subdirs.
315 if [ -f Makefile ] ; then
316 echo "Makefile already exists in source directory. `pwd` not configured."
320 if [ ! -d ${hostsubdir} ] ; then mkdir ${hostsubdir} ; fi
323 if [ ! -d ${targetsubdir} ] ; then mkdir ${targetsubdir} ; fi
328 # if not subdir builds, then make sure none exist.
329 if [ -n "`(ls .) 2>&1 | grep Host-`" ] ; then
330 echo "Configured subdirs exist. `pwd` not configured."
335 # Find the source files, if location was not specified.
336 if [ -z "${srcdir}" ] ; then
339 if [ -n "${srctrigger}" -a ! -r ${srctrigger} ] ; then
344 if [ -n "${srctrigger}" -a ! -r ${srcdir}/${srctrigger} ] ; then
345 if [ -z "${srcdirdefaulted}" ] ; then
346 echo "${progname}: Can't find ${srcname} sources in `pwd`/${srcdir}" 1>&2
348 echo "${progname}: Can't find ${srcname} sources in `pwd`/. or `pwd`/.." 1>&2
351 echo \(At least ${srctrigger} is missing.\) 1>&2
355 # Set up the list of links to be made.
356 # ${links} is the list of link names, and ${files} is the list of names to link to.
359 while [ -n "${files}" ] ; do
360 # set file to car of files, files to cdr of files
361 set ${files}; file=$1; shift; files=$*
362 set ${links}; link=$1; shift; links=$*
364 if [ ! -r ${srcdir}/${file} ] ; then
365 echo "${progname}: cannot create a link \"${link}\"," 1>&2
366 echo "since the file \"${file}\" does not exist." 1>&2
372 # Make a symlink if possible, otherwise try a hard link
373 ${symbolic_link} ${srcdir}/${file} ${link} 2>/dev/null || ${hard_link} ${srcdir}/${file} ${link}
375 if [ ! -r ${link} ] ; then
376 echo "${progname}: unable to link \"${link}\" to \"${srcdir}/${file}\"." 1>&2
379 echo "Linked \"${link}\" to \"${srcdir}/${file}\"."
382 # Create a .gdbinit file which runs the one in srcdir
383 # and tells GDB to look there for source files.
389 echo "dir ." > .gdbinit
390 echo "dir ${srcdir}" >> .gdbinit
391 echo "source ${srcdir}/.gdbinit" >> .gdbinit
395 # Install a makefile, and make it set VPATH
396 # if necessary so that the sources are found.
397 # Also change its value of srcdir.
399 # FIXME-someday: This business of always writing to .tem and mv back
400 # is so that I don't screw things up while developing. Once this
401 # template is stable, these should be optimized. xoxorich.
403 # Define macro CROSS_COMPILE in compilation if this is a cross-compiler.
404 if [ "${host}" != "${target}" ] ; then
405 echo "CROSS=-DCROSS_COMPILE" > Makefile
406 echo "ALL=start.encap" >> Makefile
408 echo "ALL=all.internal" > Makefile
411 # set target, host, VPATH
412 echo "host = ${host}" >> Makefile
413 echo "target = ${target}" >> Makefile
415 if [ -n "${forcesubdirs}" ] ; then
416 echo "subdir = /${hostsubdir}/${targetsubdir}" >> Makefile
418 echo "subdir =" >> Makefile
421 # echo "workdir = `pwd`" >> Makefile
422 echo "VPATH = ${srcdir}" >> Makefile
425 cat ${srcdir}/Makefile.in >> Makefile
427 # and shake thoroughly.
428 host_var_file=hmake-${host}
429 target_var_file=tmake-${target}
431 # Conditionalize the makefile for this host.
432 if [ -f ${srcdir}/config/${host_var_file} ] ; then
433 sed -e "/^####/ r ${srcdir}/config/${host_var_file}" Makefile > Makefile.tem
434 mv Makefile.tem Makefile
437 # Conditionalize the makefile for this target.
438 if [ -f ${srcdir}/config/${target_var_file} ] ; then
439 sed -e "/^####/ r ${srcdir}/config/${target_var_file}" Makefile > Makefile.tem
440 mv Makefile.tem Makefile
444 sed "s@^srcdir = \.@srcdir = ${srcdir}@" Makefile > Makefile.tem
445 mv Makefile.tem Makefile
448 if [ -n "${destdir}" ] ; then
449 sed "s:^destdir =.*$:destdir = ${destdir}:" Makefile > Makefile.tem
450 mv Makefile.tem Makefile
453 # Remove all formfeeds, since some Makes get confused by them.
454 sed "s/
\f//" Makefile >> Makefile.tem
455 mv Makefile.tem Makefile
458 sed "s:^SUBDIRS =.*$:SUBDIRS = ${configdirs}:" Makefile > Makefile.tem
459 mv Makefile.tem Makefile
462 sed "s:^NONSUBDIRS =.*$:NONSUBDIRS = ${noconfigdirs}:" Makefile > Makefile.tem
463 mv Makefile.tem Makefile
466 if [ -f ${srcdir}/config/${host_var_file} ] ; then
467 using=" using \"${host_var_file}\""
470 if [ -f ${srcdir}/config/${target_var_file} ] ; then
471 if [ -z "${using}" ] ; then
472 andusing=" using \"${target_var_file}\""
474 andusing="${using} and \"${target_var_file}\""
480 echo "Created \"Makefile\"" in `pwd`${andusing}.
482 if [ "${host}" = "${target}" ] ; then
483 echo "Links are now set up for use with a ${target}." \
485 # | tee ${srcdir}/config.status
487 echo "Links are now set up for host ${host} and target ${target}." \
489 # | tee ${srcdir}/config.status
495 done # for each target
497 # # Now build a Makefile for this host.
498 # if [ -n "${forcesubdirs}" ] ; then
500 # cat > GNUmakefile << E!O!F
501 ## Makefile generated by configure for host ${host}.
504 # for i in ${targets} ; do \
505 # $(MAKE) -C Target-\$i \$@
507 #all clean stage1 stage2 stage3 stage4etags tags TAGS
512 # If there are subdirectories, then recurse.
514 if [ -n "${norecurse}" -o -z "${configdirs}" ] ; then exit 0 ; fi
516 # configdirs is not null
517 for configdir in ${configdirs} ; do
518 echo Configuring ${configdir}...
522 if [ -n "${defaulttargets}" ] ; then
523 for host in ${hosts} ; do
524 if [ -d ${configdir}.${host} ] ; then
525 newspecifics="${specifics} ${host}"
526 specifics=${newspecifics}
528 newcommons="${commons} ${host}"
529 commons=${newcommons}
530 fi # if target specific
533 if [ -n "${commons}" ] ; then
535 ./configure ${commons} ${verbose} ${forcesubdirs} ${removing}) \
537 fi # if any common hosts
539 if [ -n "${specifics}" ] ; then
540 for host in ${specifics} ; do
541 echo Configuring target specific directory ${configdir}.${host}...
542 (cd ${configdir}.${host} ;
543 ./configure ${host} ${verbose} ${forcesubdirs} ${removing}) \
545 done # for host in specifics
546 fi # if there are any specifics
549 for target in ${targets} ; do
550 if [ -d ${configdir}.${target} ] ; then
551 newspecifics="${specifics} ${target}"
552 specifics=${newspecifics}
554 newcommons="${commons} +target=${target}"
555 commons=${newcommons}
558 done # check for target specific dir override
560 if [ -n "${verbose}" ] ; then
561 echo " "commons=\"${commons}\"
562 echo " "specifics=\"${specifics}\"
565 if [ -n "${commons}" ] ; then
567 ./configure ${hosts} ${verbose} ${forcesubdirs} ${removing} ${commons}) \
571 if [ -n "${specifics}" ] ; then
572 for target in ${specifics} ; do
573 echo Configuring target specific directory ${configdir}.${target}...
574 (cd ${configdir}.${target} ;
575 ./configure ${hosts} ${verbose} ${forcesubdirs} ${removing} "+target=${target}") \
578 fi # if any specifics
579 fi # not default targets
586 # Revision 1.8 1991/05/14 14:14:25 rich
587 # see devo/configure 1.11
589 # Revision 1.10 1991/05/04 00:58:38 rich
590 # Fix program name bug.
592 # Revision 1.9 1991/05/03 19:14:18 rich
593 # Changed getopt to libiberty, commented out an aborted attempt at host
594 # level Makefiles because it caused errors on +rm, add a warning for
595 # directories expected to be removed on +rm but that don't exist.
597 # Revision 1.8 1991/04/24 16:50:59 rich
598 # Three staging checkpoint.
600 # Revision 1.7 1991/04/17 01:34:47 rich
601 # Added getopt for binutils, fixed problem with host dependancies in
602 # configure.template.
604 # Revision 1.6 1991/04/16 00:18:44 rich
605 # Now handles multiple hosts and targets.
607 # Revision 1.5 1991/04/15 23:43:44 rich
608 # Now handles multiple hosts and targets.
610 # Revision 1.4 1991/04/13 02:11:03 rich
611 # Config cut 3. We now almost install a29k.
613 # Revision 1.3 1991/04/11 02:41:54 rich
614 # Cut 2 config. Subdirs.
625 # end of configure.template