Home | History | Annotate | Line # | Download | only in build-aux
compile revision 1.1.1.1.10.2
      1  1.1.1.1.10.2  snj #! /bin/sh
      2  1.1.1.1.10.2  snj # Wrapper for compilers which do not understand `-c -o'.
      3  1.1.1.1.10.2  snj 
      4  1.1.1.1.10.2  snj scriptversion=2009-10-06.20; # UTC
      5  1.1.1.1.10.2  snj 
      6  1.1.1.1.10.2  snj # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009  Free Software
      7  1.1.1.1.10.2  snj # Foundation, Inc.
      8  1.1.1.1.10.2  snj # Written by Tom Tromey <tromey (at] cygnus.com>.
      9  1.1.1.1.10.2  snj #
     10  1.1.1.1.10.2  snj # This program is free software; you can redistribute it and/or modify
     11  1.1.1.1.10.2  snj # it under the terms of the GNU General Public License as published by
     12  1.1.1.1.10.2  snj # the Free Software Foundation; either version 2, or (at your option)
     13  1.1.1.1.10.2  snj # any later version.
     14  1.1.1.1.10.2  snj #
     15  1.1.1.1.10.2  snj # This program is distributed in the hope that it will be useful,
     16  1.1.1.1.10.2  snj # but WITHOUT ANY WARRANTY; without even the implied warranty of
     17  1.1.1.1.10.2  snj # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     18  1.1.1.1.10.2  snj # GNU General Public License for more details.
     19  1.1.1.1.10.2  snj #
     20  1.1.1.1.10.2  snj # You should have received a copy of the GNU General Public License
     21  1.1.1.1.10.2  snj # along with this program.  If not, see <http://www.gnu.org/licenses/>.
     22  1.1.1.1.10.2  snj 
     23  1.1.1.1.10.2  snj # As a special exception to the GNU General Public License, if you
     24  1.1.1.1.10.2  snj # distribute this file as part of a program that contains a
     25  1.1.1.1.10.2  snj # configuration script generated by Autoconf, you may include it under
     26  1.1.1.1.10.2  snj # the same distribution terms that you use for the rest of that program.
     27  1.1.1.1.10.2  snj 
     28  1.1.1.1.10.2  snj # This file is maintained in Automake, please report
     29  1.1.1.1.10.2  snj # bugs to <bug-automake (at] gnu.org> or send patches to
     30  1.1.1.1.10.2  snj # <automake-patches (at] gnu.org>.
     31  1.1.1.1.10.2  snj 
     32  1.1.1.1.10.2  snj case $1 in
     33  1.1.1.1.10.2  snj   '')
     34  1.1.1.1.10.2  snj      echo "$0: No command.  Try \`$0 --help' for more information." 1>&2
     35  1.1.1.1.10.2  snj      exit 1;
     36  1.1.1.1.10.2  snj      ;;
     37  1.1.1.1.10.2  snj   -h | --h*)
     38  1.1.1.1.10.2  snj     cat <<\EOF
     39  1.1.1.1.10.2  snj Usage: compile [--help] [--version] PROGRAM [ARGS]
     40  1.1.1.1.10.2  snj 
     41  1.1.1.1.10.2  snj Wrapper for compilers which do not understand `-c -o'.
     42  1.1.1.1.10.2  snj Remove `-o dest.o' from ARGS, run PROGRAM with the remaining
     43  1.1.1.1.10.2  snj arguments, and rename the output as expected.
     44  1.1.1.1.10.2  snj 
     45  1.1.1.1.10.2  snj If you are trying to build a whole package this is not the
     46  1.1.1.1.10.2  snj right script to run: please start by reading the file `INSTALL'.
     47  1.1.1.1.10.2  snj 
     48  1.1.1.1.10.2  snj Report bugs to <bug-automake (at] gnu.org>.
     49  1.1.1.1.10.2  snj EOF
     50  1.1.1.1.10.2  snj     exit $?
     51  1.1.1.1.10.2  snj     ;;
     52  1.1.1.1.10.2  snj   -v | --v*)
     53  1.1.1.1.10.2  snj     echo "compile $scriptversion"
     54  1.1.1.1.10.2  snj     exit $?
     55  1.1.1.1.10.2  snj     ;;
     56  1.1.1.1.10.2  snj esac
     57  1.1.1.1.10.2  snj 
     58  1.1.1.1.10.2  snj ofile=
     59  1.1.1.1.10.2  snj cfile=
     60  1.1.1.1.10.2  snj eat=
     61  1.1.1.1.10.2  snj 
     62  1.1.1.1.10.2  snj for arg
     63  1.1.1.1.10.2  snj do
     64  1.1.1.1.10.2  snj   if test -n "$eat"; then
     65  1.1.1.1.10.2  snj     eat=
     66  1.1.1.1.10.2  snj   else
     67  1.1.1.1.10.2  snj     case $1 in
     68  1.1.1.1.10.2  snj       -o)
     69  1.1.1.1.10.2  snj 	# configure might choose to run compile as `compile cc -o foo foo.c'.
     70  1.1.1.1.10.2  snj 	# So we strip `-o arg' only if arg is an object.
     71  1.1.1.1.10.2  snj 	eat=1
     72  1.1.1.1.10.2  snj 	case $2 in
     73  1.1.1.1.10.2  snj 	  *.o | *.obj)
     74  1.1.1.1.10.2  snj 	    ofile=$2
     75  1.1.1.1.10.2  snj 	    ;;
     76  1.1.1.1.10.2  snj 	  *)
     77  1.1.1.1.10.2  snj 	    set x "$@" -o "$2"
     78  1.1.1.1.10.2  snj 	    shift
     79  1.1.1.1.10.2  snj 	    ;;
     80  1.1.1.1.10.2  snj 	esac
     81  1.1.1.1.10.2  snj 	;;
     82  1.1.1.1.10.2  snj       *.c)
     83  1.1.1.1.10.2  snj 	cfile=$1
     84  1.1.1.1.10.2  snj 	set x "$@" "$1"
     85  1.1.1.1.10.2  snj 	shift
     86  1.1.1.1.10.2  snj 	;;
     87  1.1.1.1.10.2  snj       *)
     88  1.1.1.1.10.2  snj 	set x "$@" "$1"
     89  1.1.1.1.10.2  snj 	shift
     90  1.1.1.1.10.2  snj 	;;
     91  1.1.1.1.10.2  snj     esac
     92  1.1.1.1.10.2  snj   fi
     93  1.1.1.1.10.2  snj   shift
     94  1.1.1.1.10.2  snj done
     95  1.1.1.1.10.2  snj 
     96  1.1.1.1.10.2  snj if test -z "$ofile" || test -z "$cfile"; then
     97  1.1.1.1.10.2  snj   # If no `-o' option was seen then we might have been invoked from a
     98  1.1.1.1.10.2  snj   # pattern rule where we don't need one.  That is ok -- this is a
     99  1.1.1.1.10.2  snj   # normal compilation that the losing compiler can handle.  If no
    100  1.1.1.1.10.2  snj   # `.c' file was seen then we are probably linking.  That is also
    101  1.1.1.1.10.2  snj   # ok.
    102  1.1.1.1.10.2  snj   exec "$@"
    103  1.1.1.1.10.2  snj fi
    104  1.1.1.1.10.2  snj 
    105  1.1.1.1.10.2  snj # Name of file we expect compiler to create.
    106  1.1.1.1.10.2  snj cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'`
    107  1.1.1.1.10.2  snj 
    108  1.1.1.1.10.2  snj # Create the lock directory.
    109  1.1.1.1.10.2  snj # Note: use `[/\\:.-]' here to ensure that we don't use the same name
    110  1.1.1.1.10.2  snj # that we are using for the .o file.  Also, base the name on the expected
    111  1.1.1.1.10.2  snj # object file name, since that is what matters with a parallel build.
    112  1.1.1.1.10.2  snj lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d
    113  1.1.1.1.10.2  snj while true; do
    114  1.1.1.1.10.2  snj   if mkdir "$lockdir" >/dev/null 2>&1; then
    115  1.1.1.1.10.2  snj     break
    116  1.1.1.1.10.2  snj   fi
    117  1.1.1.1.10.2  snj   sleep 1
    118  1.1.1.1.10.2  snj done
    119  1.1.1.1.10.2  snj # FIXME: race condition here if user kills between mkdir and trap.
    120  1.1.1.1.10.2  snj trap "rmdir '$lockdir'; exit 1" 1 2 15
    121  1.1.1.1.10.2  snj 
    122  1.1.1.1.10.2  snj # Run the compile.
    123  1.1.1.1.10.2  snj "$@"
    124  1.1.1.1.10.2  snj ret=$?
    125  1.1.1.1.10.2  snj 
    126  1.1.1.1.10.2  snj if test -f "$cofile"; then
    127  1.1.1.1.10.2  snj   test "$cofile" = "$ofile" || mv "$cofile" "$ofile"
    128  1.1.1.1.10.2  snj elif test -f "${cofile}bj"; then
    129  1.1.1.1.10.2  snj   test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile"
    130  1.1.1.1.10.2  snj fi
    131  1.1.1.1.10.2  snj 
    132  1.1.1.1.10.2  snj rmdir "$lockdir"
    133  1.1.1.1.10.2  snj exit $ret
    134  1.1.1.1.10.2  snj 
    135  1.1.1.1.10.2  snj # Local Variables:
    136  1.1.1.1.10.2  snj # mode: shell-script
    137  1.1.1.1.10.2  snj # sh-indentation: 2
    138  1.1.1.1.10.2  snj # eval: (add-hook 'write-file-hooks 'time-stamp)
    139  1.1.1.1.10.2  snj # time-stamp-start: "scriptversion="
    140  1.1.1.1.10.2  snj # time-stamp-format: "%:y-%02m-%02d.%02H"
    141  1.1.1.1.10.2  snj # time-stamp-time-zone: "UTC"
    142  1.1.1.1.10.2  snj # time-stamp-end: "; # UTC"
    143  1.1.1.1.10.2  snj # End:
    144