compile
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:3k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. #! /bin/sh
  2. # Wrapper for compilers which do not understand `-c -o'.
  3. # Copyright 1999, 2000 Free Software Foundation, Inc.
  4. # Written by Tom Tromey <tromey@cygnus.com>.
  5. #
  6. # This program is free software; you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation; either version 2, or (at your option)
  9. # any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program; if not, write to the Free Software
  18. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  19. # As a special exception to the GNU General Public License, if you
  20. # distribute this file as part of a program that contains a
  21. # configuration script generated by Autoconf, you may include it under
  22. # the same distribution terms that you use for the rest of that program.
  23. # Usage:
  24. # compile PROGRAM [ARGS]...
  25. # `-o FOO.o' is removed from the args passed to the actual compile.
  26. # Usage statement added by Billy Biggs <vektor@dumbterm.net>.
  27. if [ -z $1 ]; then
  28.     echo "Wrapper for compilers which do not understand '-c -o'."
  29.     echo "usage: compile PROGRAM [ARGS]..."
  30.     echo "'-o FOO.o' is removed from the args passed to the actual compile."
  31.     exit 1
  32. fi
  33. prog=$1
  34. shift
  35. ofile=
  36. cfile=
  37. args=
  38. while test $# -gt 0; do
  39.    case "$1" in
  40.     -o)
  41.        # configure might choose to run compile as `compile cc -o foo foo.c'.
  42.        # So we do something ugly here.
  43.        ofile=$2
  44.        shift
  45.        case "$ofile" in
  46. *.o | *.obj)
  47.    ;;
  48. *)
  49.    args="$args -o $ofile"
  50.    ofile=
  51.    ;;
  52.        esac
  53.        ;;
  54.     *.c)
  55.        cfile=$1
  56.        args="$args $1"
  57.        ;;
  58.     *)
  59.        args="$args $1"
  60.        ;;
  61.    esac
  62.    shift
  63. done
  64. if test -z "$ofile" || test -z "$cfile"; then
  65.    # If no `-o' option was seen then we might have been invoked from a
  66.    # pattern rule where we don't need one.  That is ok -- this is a
  67.    # normal compilation that the losing compiler can handle.  If no
  68.    # `.c' file was seen then we are probably linking.  That is also
  69.    # ok.
  70.    exec "$prog" $args
  71. fi
  72. # Name of file we expect compiler to create.
  73. cofile=`echo $cfile | sed -e 's|^.*/||' -e 's/.c$/.o/'`
  74. # Create the lock directory.
  75. # Note: use `[/.-]' here to ensure that we don't use the same name
  76. # that we are using for the .o file.  Also, base the name on the expected
  77. # object file name, since that is what matters with a parallel build.
  78. lockdir=`echo $cofile | sed -e 's|[/.-]|_|g'`.d
  79. while true; do
  80.    if mkdir $lockdir > /dev/null 2>&1; then
  81.       break
  82.    fi
  83.    sleep 1
  84. done
  85. # FIXME: race condition here if user kills between mkdir and trap.
  86. trap "rmdir $lockdir; exit 1" 1 2 15
  87. # Run the compile.
  88. "$prog" $args
  89. status=$?
  90. if test -f "$cofile"; then
  91.    mv "$cofile" "$ofile"
  92. fi
  93. rmdir $lockdir
  94. exit $status