usr/src/grub/grub-0.97/compile
author Christopher Siden <chris.siden@delphix.com>
Mon, 21 May 2012 12:11:39 -0700
changeset 13700 2889e2596bd6
parent 8044 b3af80bbf173
permissions -rwxr-xr-x
2619 asynchronous destruction of ZFS file systems 2747 SPA versioning with zfs feature flags Reviewed by: Matt Ahrens <[email protected]> Reviewed by: George Wilson <[email protected]> Reviewed by: Richard Lowe <[email protected]> Reviewed by: Dan Kruchinin <[email protected]> Approved by: Eric Schrock <[email protected]>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
     1
#! /bin/sh
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
     2
# Wrapper for compilers which do not understand `-c -o'.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
     3
8044
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
     4
scriptversion=2004-10-12.08
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
     5
8044
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
     6
# Copyright (C) 1999, 2000, 2003, 2004 Free Software Foundation, Inc.
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
     7
# Written by Tom Tromey <[email protected]>.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
     8
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
     9
# This program is free software; you can redistribute it and/or modify
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    10
# it under the terms of the GNU General Public License as published by
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    11
# the Free Software Foundation; either version 2, or (at your option)
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    12
# any later version.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    13
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    14
# This program is distributed in the hope that it will be useful,
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    15
# but WITHOUT ANY WARRANTY; without even the implied warranty of
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    16
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    17
# GNU General Public License for more details.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    18
#
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    19
# You should have received a copy of the GNU General Public License
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    20
# along with this program; if not, write to the Free Software
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    21
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    22
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    23
# As a special exception to the GNU General Public License, if you
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    24
# distribute this file as part of a program that contains a
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    25
# configuration script generated by Autoconf, you may include it under
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    26
# the same distribution terms that you use for the rest of that program.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    27
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    28
# This file is maintained in Automake, please report
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    29
# bugs to <[email protected]> or send patches to
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    30
# <[email protected]>.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    31
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    32
case $1 in
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    33
  '')
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    34
     echo "$0: No command.  Try \`$0 --help' for more information." 1>&2
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    35
     exit 1;
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    36
     ;;
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    37
  -h | --h*)
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    38
    cat <<\EOF
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    39
Usage: compile [--help] [--version] PROGRAM [ARGS]
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    40
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    41
Wrapper for compilers which do not understand `-c -o'.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    42
Remove `-o dest.o' from ARGS, run PROGRAM with the remaining
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    43
arguments, and rename the output as expected.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    44
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    45
If you are trying to build a whole package this is not the
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    46
right script to run: please start by reading the file `INSTALL'.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    47
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    48
Report bugs to <[email protected]>.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    49
EOF
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    50
    exit 0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    51
    ;;
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    52
  -v | --v*)
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    53
    echo "compile $scriptversion"
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    54
    exit 0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    55
    ;;
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    56
esac
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    57
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    58
ofile=
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    59
cfile=
8044
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    60
eat=
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    61
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    62
for arg
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    63
do
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    64
  if test -n "$eat"; then
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    65
    eat=
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    66
  else
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    67
    case $1 in
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    68
      -o)
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    69
	# configure might choose to run compile as `compile cc -o foo foo.c'.
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    70
	# So we strip `-o arg' only if arg is an object.
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    71
	eat=1
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    72
	case $2 in
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    73
	  *.o | *.obj)
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    74
	    ofile=$2
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    75
	    ;;
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    76
	  *)
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    77
	    set x "$@" -o "$2"
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    78
	    shift
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    79
	    ;;
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    80
	esac
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    81
	;;
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    82
      *.c)
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    83
	cfile=$1
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    84
	set x "$@" "$1"
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    85
	shift
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    86
	;;
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    87
      *)
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    88
	set x "$@" "$1"
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    89
	shift
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    90
	;;
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    91
    esac
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
    92
  fi
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    93
  shift
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    94
done
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    95
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    96
if test -z "$ofile" || test -z "$cfile"; then
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    97
  # If no `-o' option was seen then we might have been invoked from a
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    98
  # pattern rule where we don't need one.  That is ok -- this is a
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    99
  # normal compilation that the losing compiler can handle.  If no
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   100
  # `.c' file was seen then we are probably linking.  That is also
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   101
  # ok.
8044
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
   102
  exec "$@"
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   103
fi
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   104
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   105
# Name of file we expect compiler to create.
8044
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
   106
cofile=`echo "$cfile" | sed -e 's|^.*/||' -e 's/\.c$/.o/'`
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   107
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   108
# Create the lock directory.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   109
# Note: use `[/.-]' here to ensure that we don't use the same name
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   110
# that we are using for the .o file.  Also, base the name on the expected
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   111
# object file name, since that is what matters with a parallel build.
8044
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
   112
lockdir=`echo "$cofile" | sed -e 's|[/.-]|_|g'`.d
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   113
while true; do
8044
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
   114
  if mkdir "$lockdir" >/dev/null 2>&1; then
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   115
    break
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   116
  fi
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   117
  sleep 1
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   118
done
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   119
# FIXME: race condition here if user kills between mkdir and trap.
8044
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
   120
trap "rmdir '$lockdir'; exit 1" 1 2 15
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   121
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   122
# Run the compile.
8044
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
   123
"$@"
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
   124
ret=$?
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   125
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   126
if test -f "$cofile"; then
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   127
  mv "$cofile" "$ofile"
8044
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
   128
elif test -f "${cofile}bj"; then
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
   129
  mv "${cofile}bj" "$ofile"
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   130
fi
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   131
8044
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
   132
rmdir "$lockdir"
b3af80bbf173 6731552 GRUB should have the ability to overlay a logo on the graphical splash screen
William Kucharski <William.Kucharski@Sun.COM>
parents: 0
diff changeset
   133
exit $ret
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   134
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   135
# Local Variables:
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   136
# mode: shell-script
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   137
# sh-indentation: 2
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   138
# eval: (add-hook 'write-file-hooks 'time-stamp)
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   139
# time-stamp-start: "scriptversion="
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   140
# time-stamp-format: "%:y-%02m-%02d.%02H"
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   141
# time-stamp-end: "$"
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   142
# End: