4 # Copyright (C) 1988, 1990, 1991 Free Software Foundation, Inc.
6 #This file is part of GNU.
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
24 # Please email any bugs, comments, and/or additions to this file to:
25 # configure@cygnus.com
28 # Shell script to create proper links to machine-dependent files in
29 # preparation for compilation.
31 # If configure succeeds, it leaves its status in config.status.
32 # If configure fails after disturbing the status quo,
33 # config.status is removed.
45 #symbolic_link="echo ln -s"
47 # clear some things potentially inherited from environment.
50 Makefile_in=Makefile.in
79 -destdir=* | +destdir=* | +destdi=* | +destd=* | +dest=* | +des=* | +de=* | +d=*)
80 destdir=`echo ${arg} | sed 's/[+-]d[a-z]*=//'`
82 -languages=* | +languages=* | +language=* | +languag=* \
83 | +langua=* | +langu=* | +lang=* | +lan=* | +la=* \
85 languages="${languages} `echo ${arg} | sed 's/[+-]l[a-z]*=//'`"
99 -objdir=* | +objdir=* | +objdi=* | +objd=* | +obj=* | +ob=* | +o=*)
101 objdir=`echo ${arg} | sed 's/[+-]o[a-z]*=//'`
103 -recurring | +recurring | +recurrin | +recurri | +recurr | +recur | +recu | +rec | +re)
109 -site=* | +site=* | +sit=* | +si=*)
110 site=`echo ${arg} | sed 's/[+-]s[a-z]*=//'`
112 # -srcdir=* | +srcdir=* | +srcdi=* | +srcd=* | +src=* | +sr=*)
113 # srcdir=`echo ${arg} | sed 's/[+-]s[a-z]*=//'`
118 -target=* | +target=* | +targe=* | +targ=* | +tar=* | +ta=*)
119 if [ -n "${targets}" ] ; then
123 newtargets="${targets} `echo ${arg} | sed 's/[+-]t[a-z]*=//'`"
124 targets="${newtargets}"
126 -tmpdir=* | +tmpdir=* | +tmpdi=* | +tmpd=* | +tmp=* | +tm=*)
128 TMPDIR=`echo ${arg} | sed 's/[+-]t[a-z]*=//'`
135 echo "Unrecognized option: \"${arg}\"". ;
140 if [ -n "${hosts}" ] ; then
144 newhosts="${hosts} ${arg}"
150 if [ -n "${verbose}" ] ; then
154 ## this is a little touchy and won't always work, but...
156 ## if the argv[0] starts with a slash then it is an absolute name that can be
159 ## otherwise, if argv[0] has no slash in it, we can assume that it is on the
160 ## path. Since PATH might include "." we also add `pwd` to the end of PATH.
162 ## otherwise we prepend `pwd` to $0 and hope that will give us an absolute
166 if (echo $0 | grep '^/' > /dev/null) ; then
169 if (echo $0 | grep '/' > /dev/null) ; then
173 PATH=$PATH:`pwd` ; export PATH
177 configsub=`echo ${progname} | sed 's/configure\$/config.sub/'`
179 if [ ! -f ${configsub} ] ; then
180 echo '***' cannot find config.sub.
184 # process host and target only if not removing.
185 if [ -z "${removing}" -a -z "${fatal}" ] ; then
186 # Complain if an arg is missing
187 if [ -z "${hosts}" ] ; then
189 echo "configure: No HOST specified." ;
195 if [ -n "${fatal}" -o "${hosts}" = "help" ] ; then
196 (echo "Usage: configure HOST" ;
198 echo "Options: [defaults in brackets]" ;
199 echo " +ansi configure w/ANSI library. [no ansi lib]" ;
200 echo " +destdir=MYDIR configure for installation into MYDIR. [\"/usr/local\"]" ;
201 echo " +gas configure the compilers for use with gas. [native as]" ;
202 echo " +help print this message. [normal config]" ;
203 echo " +lang=LANG configure to build LANG. [gcc]" ;
204 echo " +nfp configure the compilers default to soft floating point. [hard float]" ;
205 echo " +norecursion configure this directory only. [recurse]" ;
206 echo " +objdir=ODIR configure in a parallel tree rooted in ODIR. [rooted in \".\"]" ;
207 echo " +rm remove this configuration. [build a configuration]" ;
208 echo " +site configure with site specific makefile" ;
209 # This is correctly aligned in the output, even though it isn't here.
210 echo " +subdirs configure in subdirectories. [in source directories]" ;
211 echo " +target=TARGET configure for TARGET. [TARGET = HOST]" ;
212 echo " +tmpdir=TMPDIR create temporary files in TMPDIR. [ TMPDIR = \"/tmp\" ]" ;
214 echo "Where HOST and TARGET are something like \"vax\", \"sun3\", \"encore\", etc." ;
215 echo "Asking for more than one \"+target\" implies \"+subdirs\". Any other" ;
216 echo "options given will apply to all targets.") 1>&2
218 if [ -r config.status ] ; then
225 ### break up configure.in.
226 if [ -r configure.in ] ; then
227 if [ -z "`grep '^# per\-host:' configure.in`" ] ; then
228 echo '***' `pwd`/configure.in has no "per-host:" line. 1>&2
232 if [ -z "`grep '^# per\-target:' configure.in`" ] ; then
233 echo '***' `pwd`/configure.in has no "per-target:" line. 1>&2
237 if [ -z "${TMPDIR}" ] ; then
238 TMPDIR=/tmp ; export TMPDIR
241 # split configure.in into common, per-host, per-target,
242 # and post-target parts. Post-target is optional.
243 sed -e '/^# per\-host:/,$d' configure.in > ${TMPDIR}/configure.$$.com
244 sed -e '1,/^# per\-host:/d' -e '/^# per\-target:/,$d' configure.in > ${TMPDIR}/configure.$$.hst
245 if grep -s '^# post-target:' configure.in ; then
246 sed -e '1,/^# per\-target:/d' -e '/^# post\-target:/,$d' configure.in > ${TMPDIR}/configure.$$.tgt
247 sed -e '1,/^# post\-target:/d' configure.in > ${TMPDIR}/configure.$$.pos
249 sed -e '1,/^# per\-target:/d' configure.in > ${TMPDIR}/configure.$$.tgt
250 echo >${TMPDIR}/configure.$$.pos
254 echo '***' No configure.in in `pwd`
258 ### do common part of configure.in
260 . ${TMPDIR}/configure.$$.com
262 # some sanity checks on configure.in
263 if [ -z "${srctrigger}" ] ; then
264 echo '***' srctrigger not set in `pwd`/configure.in.
268 for host in ${hosts} ; do
270 if [ -z "${targets}" -o -n "${defaulttargets}" ] ; then
277 result=`${configsub} ${host}`
278 host_cpu=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\1/'`
279 host_vendor=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\2/'`
280 host_os=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\3/'`
281 host=${host_cpu}-${host_vendor}-${host_os}
282 host_makefile_frag=config/hmake-${host}
284 . ${TMPDIR}/configure.$$.hst
286 for target in ${targets} ; do
288 target_alias=${target}
289 result=`${configsub} ${target}`
290 target_cpu=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\1/'`
291 target_vendor=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\2/'`
292 target_os=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\3/'`
293 target=${target_cpu}-${target_vendor}-${target_os}
294 target_makefile_frag=config/tmake-${target}
296 . ${TMPDIR}/configure.$$.tgt
298 # Temporarily, we support only direct subdir builds.
299 hostsubdir=H-${host_alias}
300 targetsubdir=T-${target_alias}
302 if [ -n "${removing}" ] ; then
303 if [ -n "${objdir}" ] ; then
304 echo '***' +rm not supported for +objdir. Just \"rm -rf ${objdir}\" by hand.
308 if [ -n "${subdirs}" ] ; then
309 if [ -d "${hostsubdir}" ] ; then
310 rm -rf ${hostsubdir}/${targetsubdir}
312 if [ -z "`(ls ${hostsubdir}) 2>&1 | grep T- | grep -v T-independent`" ] ; then
316 echo Warning: no `pwd`/${hostsubdir} to remove.
319 rm -f ${Makefile} config.status ${links}
322 if [ -n "${objdir}" ]; then
327 if [ -n "${subdirs}" ] ; then
328 # check for existing status before allowing forced subdirs.
329 if [ -f ${Makefile} ] ; then
330 echo '***' "${Makefile} already exists in source directory. `pwd` not configured." 1>&2
334 if [ ! -d ${hostsubdir} ] ; then mkdir ${hostsubdir} ; fi
337 if [ ! -d ${targetsubdir} ] ; then
338 if [ -z "${commontargets}" ] ; then
339 mkdir ${targetsubdir}
341 if [ ! -d T-independent ] ; then
345 ${symbolic_link} T-independent ${targetsubdir}
346 fi # if target independent
347 fi # if no target dir yet
351 if [ -z "${srcdir}" ] ; then
355 # if not subdir builds, then make sure none exist.
356 if [ -n "`(ls .) 2>&1 | (grep H- ; true)`" ] ; then
357 echo '***' "Configured subdirs exist. `pwd` not configured." 1>&2
364 # Find the source files, if location was not specified.
365 if [ -z "${srcdir}" ] ; then
368 if [ -n "${srctrigger}" -a ! -r ${srctrigger} ] ; then
373 if [ -n "${srctrigger}" -a ! -r ${srcdir}/${srctrigger} ] ; then
374 if [ -z "${srcdirdefaulted}" ] ; then
375 echo '***' "${progname}: Can't find ${srcname} sources in `pwd`/${srcdir}" 1>&2
377 echo '***' "${progname}: Can't find ${srcname} sources in `pwd`/. or `pwd`/.." 1>&2
380 echo '***' \(At least ${srctrigger} is missing.\) 1>&2
384 # Set up the list of links to be made.
385 # ${links} is the list of link names, and ${files} is the list of names to link to.
388 while [ -n "${files}" ] ; do
389 # set file to car of files, files to cdr of files
390 set ${files}; file=$1; shift; files=$*
391 set ${links}; link=$1; shift; links=$*
393 if [ ! -r ${srcdir}/${file} ] ; then
394 echo '***' "${progname}: cannot create a link \"${link}\"," 1>&2
395 echo '***' "since the file \"${file}\" does not exist." 1>&2
401 # Make a symlink if possible, otherwise try a hard link
402 ${symbolic_link} ${srcdir}/${file} ${link} 2>/dev/null || ${hard_link} ${srcdir}/${file} ${link}
404 if [ ! -r ${link} ] ; then
405 echo '***' "${progname}: unable to link \"${link}\" to \"${srcdir}/${file}\"." 1>&2
409 if [ -n "${verbose}" ] ; then
410 echo "Linked \"${link}\" to \"${srcdir}/${file}\"."
414 # Create a .gdbinit file which runs the one in srcdir
415 # and tells GDB to look there for source files.
421 echo "dir ." > .gdbinit
422 echo "dir ${srcdir}" >> .gdbinit
423 echo "source ${srcdir}/.gdbinit" >> .gdbinit
427 # Install a makefile, and make it set VPATH
428 # if necessary so that the sources are found.
429 # Also change its value of srcdir.
431 # FIXME-someday: This business of always writing to .tem and mv back
432 # is so that I don't screw things up while developing. Once this
433 # template is stable, these should be optimized. xoxorich.
435 # Define macro CROSS_COMPILE in compilation if this is a cross-compiler.
436 if [ "${host}" != "${target}" ] ; then
437 echo "CROSS=-DCROSS_COMPILE" > ${Makefile}
438 echo "ALL=start.encap" >> ${Makefile}
440 echo "ALL=all.internal" > ${Makefile}
443 # set target, host, VPATH
444 echo "host_alias = ${host_alias}" >> ${Makefile}
445 echo "host_cpu = ${host_cpu}" >> ${Makefile}
446 echo "host_vendor = ${host_vendor}" >> ${Makefile}
447 echo "host_os = ${host_os}" >> ${Makefile}
449 echo "target_alias = ${target_alias}" >> ${Makefile}
450 echo "target_cpu = ${target_cpu}" >> ${Makefile}
451 echo "target_vendor = ${target_vendor}" >> ${Makefile}
452 echo "target_os = ${target_os}" >> ${Makefile}
454 if [ -n "${subdirs}" ] ; then
455 (echo "subdir = /${hostsubdir}/${targetsubdir}" ;
456 echo "unsubdir = ../..") >> ${Makefile}
459 echo "unsubdir = .") >> ${Makefile}
462 # echo "workdir = `pwd`" >> ${Makefile}
463 echo "VPATH = ${srcdir}" >> ${Makefile}
465 # add "Makefile.in" (or whatever it's called)
466 cat ${srcdir}/${Makefile_in} >> ${Makefile}
468 # Conditionalize the makefile for this host.
469 if [ -f ${srcdir}/${host_makefile_frag} ] ; then
470 (echo "host_makefile_frag = ${srcdir}/${host_makefile_frag}" ;
471 sed -e "/^####/ r ${srcdir}/${host_makefile_frag}" ${Makefile}) > Makefile.tem
472 mv Makefile.tem ${Makefile}
475 # Conditionalize the makefile for this target.
476 if [ -f ${srcdir}/${target_makefile_frag} ] ; then
477 (echo "target_makefile_frag = ${srcdir}/${target_makefile_frag}" ;
478 sed -e "/^####/ r ${srcdir}/${target_makefile_frag}" ${Makefile}) > Makefile.tem
479 mv Makefile.tem ${Makefile}
482 # Conditionalize the makefile for this site.
483 if [ -n "${site}" ] ; then
484 site_makefile_frag=smake-${site}
486 if [ -f ${srcdir}/${site_makefile_frag} ] ; then
487 (echo "site_makefile_frag = ${srcdir}/${site_makefile_frag}" ;
488 sed -e "/^####/ r ${srcdir}/${site_makefile_frag}" ${Makefile}) > Makefile.tem
489 mv Makefile.tem ${Makefile}
494 sed "s@^srcdir = \.@srcdir = ${srcdir}@" ${Makefile} > Makefile.tem
495 mv Makefile.tem ${Makefile}
498 if [ -n "${destdir}" ] ; then
499 sed "s:^destdir =.*$:destdir = ${destdir}:" ${Makefile} > Makefile.tem
500 mv Makefile.tem ${Makefile}
504 sed "s:^SUBDIRS =.*$:SUBDIRS = ${configdirs}:" ${Makefile} > Makefile.tem
505 mv Makefile.tem ${Makefile}
508 sed "s:^NONSUBDIRS =.*$:NONSUBDIRS = ${noconfigdirs}:" ${Makefile} > Makefile.tem
509 mv Makefile.tem ${Makefile}
511 # remove any form feeds.
512 sed -e "s/
\f//" ${Makefile} > Makefile.tem
513 mv Makefile.tem ${Makefile}
516 if [ -f ${srcdir}/${host_makefile_frag} ] ; then
517 using=" using \"${host_makefile_frag}\""
520 if [ -f ${srcdir}/${target_makefile_frag} ] ; then
521 if [ -z "${using}" ] ; then
522 andusing=" using \"${target_makefile_frag}\""
524 andusing="${using} and \"${target_makefile_frag}\""
530 if [ -f ${srcdir}/${site_makefile_frag} ] ; then
531 if [ -z "${andusing}" ] ; then
532 andandusing=" using \"${site_makefile_frag}\""
534 andandusing="${andusing} and \"${site_makefile_frag}\""
540 if [ -n "${verbose}" -o -z "${recurring}" ] ; then
541 echo "Created \"${Makefile}\"" in `pwd`${andandusing}.
544 if [ -f ${TMPDIR}/configure.$$.pos ] ; then
545 . ${TMPDIR}/configure.$$.pos
548 # describe the chosen configuration in config.status.
549 # Make that file a shellscript which will reestablish
550 # the same configuration. Used in Makefiles to rebuild
554 # `pwd` was configured as follows:
555 (cd ${srcdir} ; ${progname}" ${arguments} `if [ -z "${norecursion}" ] ; then echo +norecursion ; else true ; fi` ")" > config.status
556 chmod a+x config.status
562 # If there are subdirectories, then recurse.
563 if [ -z "${norecursion}" -a -n "${configdirs}" ] ; then
564 for configdir in ${configdirs} ; do
565 if [ -n "${verbose}" ] ; then
566 echo Configuring ${configdir}...
569 if [ -d ${configdir} ] ; then
570 if [ -n "${objdir}" ] ; then
571 if [ ! -d ${objdir}/${configdir} ] ; then
572 mkdir ${objdir}/${configdir}
577 ${progname} +recurring ${host_alias} +target=${target_alias} \
578 ${verbose} ${subdirs} ${removing} +destdir=${destdir} \
579 `if [ -n "${objdir}" ] ; then echo +objdir=${objdir}/${configdir} ; fi` \
583 if [ -n "${verbose}" ] ; then
584 echo Warning: directory \"${configdir}\" is missing.
589 done # for each target
591 # Now build a Makefile for this host.
592 if [ -n "${subdirs}" -a ! -n "${removing}" ] ; then
595 if [ -n "${objdir}" ] ; then
600 cat > GNUmakefile << E!O!F
601 # Makefile generated by configure for host ${host_alias}.
603 ALL := $(shell ls -d T-*)
606 $(foreach subdir,$(ALL),$(MAKE) -C $(subdir) \$@ &&) true
616 rm -f ${TMPDIR}/configure.$$.com ${TMPDIR}/configure.$$.tgt ${TMPDIR}/configure.$$.hst ${TMPDIR}/configure.$$.pos
623 # Revision 1.52 1991/10/09 00:48:26 rich
624 # Another patch from jim.
626 # Revision 1.51 1991/10/08 06:07:58 wilson
627 # Fix bug in smake- file code.
629 # Revision 1.50 1991/10/04 23:49:37 rich
630 # Per's patch for my config.sub botch.
632 # Revision 1.49 1991/10/04 22:52:09 rich
633 # Use john's heuristic for finding ourselves. kinda like hare krishna.
635 # Revision 1.48 1991/10/02 13:17:28 rich
636 # take out the set -e for now
638 # Revision 1.47 1991/10/02 10:02:23 rich
639 # * temporary files in TMPDIR
642 # Revision 1.46 1991/10/02 06:29:53 rich
643 # Added +site=foo option for naming site specific Makefile fragments.
645 # Revision 1.45 1991/10/02 06:15:13 rich
646 # Removed +f option. Used to stand for +forcesubdirs which is now
649 # Revision 1.44 1991/10/02 06:02:35 rich
650 # Added rcs log line.