cannam@167: #! /bin/sh cannam@167: # Wrapper for compilers which do not understand '-c -o'. cannam@167: cannam@167: scriptversion=2012-10-14.11; # UTC cannam@167: cannam@167: # Copyright (C) 1999-2014 Free Software Foundation, Inc. cannam@167: # Written by Tom Tromey . cannam@167: # cannam@167: # This program is free software; you can redistribute it and/or modify cannam@167: # it under the terms of the GNU General Public License as published by cannam@167: # the Free Software Foundation; either version 2, or (at your option) cannam@167: # any later version. cannam@167: # cannam@167: # This program is distributed in the hope that it will be useful, cannam@167: # but WITHOUT ANY WARRANTY; without even the implied warranty of cannam@167: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the cannam@167: # GNU General Public License for more details. cannam@167: # cannam@167: # You should have received a copy of the GNU General Public License cannam@167: # along with this program. If not, see . cannam@167: cannam@167: # As a special exception to the GNU General Public License, if you cannam@167: # distribute this file as part of a program that contains a cannam@167: # configuration script generated by Autoconf, you may include it under cannam@167: # the same distribution terms that you use for the rest of that program. cannam@167: cannam@167: # This file is maintained in Automake, please report cannam@167: # bugs to or send patches to cannam@167: # . cannam@167: cannam@167: nl=' cannam@167: ' cannam@167: cannam@167: # We need space, tab and new line, in precisely that order. Quoting is cannam@167: # there to prevent tools from complaining about whitespace usage. cannam@167: IFS=" "" $nl" cannam@167: cannam@167: file_conv= cannam@167: cannam@167: # func_file_conv build_file lazy cannam@167: # Convert a $build file to $host form and store it in $file cannam@167: # Currently only supports Windows hosts. If the determined conversion cannam@167: # type is listed in (the comma separated) LAZY, no conversion will cannam@167: # take place. cannam@167: func_file_conv () cannam@167: { cannam@167: file=$1 cannam@167: case $file in cannam@167: / | /[!/]*) # absolute file, and not a UNC file cannam@167: if test -z "$file_conv"; then cannam@167: # lazily determine how to convert abs files cannam@167: case `uname -s` in cannam@167: MINGW*) cannam@167: file_conv=mingw cannam@167: ;; cannam@167: CYGWIN*) cannam@167: file_conv=cygwin cannam@167: ;; cannam@167: *) cannam@167: file_conv=wine cannam@167: ;; cannam@167: esac cannam@167: fi cannam@167: case $file_conv/,$2, in cannam@167: *,$file_conv,*) cannam@167: ;; cannam@167: mingw/*) cannam@167: file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` cannam@167: ;; cannam@167: cygwin/*) cannam@167: file=`cygpath -m "$file" || echo "$file"` cannam@167: ;; cannam@167: wine/*) cannam@167: file=`winepath -w "$file" || echo "$file"` cannam@167: ;; cannam@167: esac cannam@167: ;; cannam@167: esac cannam@167: } cannam@167: cannam@167: # func_cl_dashL linkdir cannam@167: # Make cl look for libraries in LINKDIR cannam@167: func_cl_dashL () cannam@167: { cannam@167: func_file_conv "$1" cannam@167: if test -z "$lib_path"; then cannam@167: lib_path=$file cannam@167: else cannam@167: lib_path="$lib_path;$file" cannam@167: fi cannam@167: linker_opts="$linker_opts -LIBPATH:$file" cannam@167: } cannam@167: cannam@167: # func_cl_dashl library cannam@167: # Do a library search-path lookup for cl cannam@167: func_cl_dashl () cannam@167: { cannam@167: lib=$1 cannam@167: found=no cannam@167: save_IFS=$IFS cannam@167: IFS=';' cannam@167: for dir in $lib_path $LIB cannam@167: do cannam@167: IFS=$save_IFS cannam@167: if $shared && test -f "$dir/$lib.dll.lib"; then cannam@167: found=yes cannam@167: lib=$dir/$lib.dll.lib cannam@167: break cannam@167: fi cannam@167: if test -f "$dir/$lib.lib"; then cannam@167: found=yes cannam@167: lib=$dir/$lib.lib cannam@167: break cannam@167: fi cannam@167: if test -f "$dir/lib$lib.a"; then cannam@167: found=yes cannam@167: lib=$dir/lib$lib.a cannam@167: break cannam@167: fi cannam@167: done cannam@167: IFS=$save_IFS cannam@167: cannam@167: if test "$found" != yes; then cannam@167: lib=$lib.lib cannam@167: fi cannam@167: } cannam@167: cannam@167: # func_cl_wrapper cl arg... cannam@167: # Adjust compile command to suit cl cannam@167: func_cl_wrapper () cannam@167: { cannam@167: # Assume a capable shell cannam@167: lib_path= cannam@167: shared=: cannam@167: linker_opts= cannam@167: for arg cannam@167: do cannam@167: if test -n "$eat"; then cannam@167: eat= cannam@167: else cannam@167: case $1 in cannam@167: -o) cannam@167: # configure might choose to run compile as 'compile cc -o foo foo.c'. cannam@167: eat=1 cannam@167: case $2 in cannam@167: *.o | *.[oO][bB][jJ]) cannam@167: func_file_conv "$2" cannam@167: set x "$@" -Fo"$file" cannam@167: shift cannam@167: ;; cannam@167: *) cannam@167: func_file_conv "$2" cannam@167: set x "$@" -Fe"$file" cannam@167: shift cannam@167: ;; cannam@167: esac cannam@167: ;; cannam@167: -I) cannam@167: eat=1 cannam@167: func_file_conv "$2" mingw cannam@167: set x "$@" -I"$file" cannam@167: shift cannam@167: ;; cannam@167: -I*) cannam@167: func_file_conv "${1#-I}" mingw cannam@167: set x "$@" -I"$file" cannam@167: shift cannam@167: ;; cannam@167: -l) cannam@167: eat=1 cannam@167: func_cl_dashl "$2" cannam@167: set x "$@" "$lib" cannam@167: shift cannam@167: ;; cannam@167: -l*) cannam@167: func_cl_dashl "${1#-l}" cannam@167: set x "$@" "$lib" cannam@167: shift cannam@167: ;; cannam@167: -L) cannam@167: eat=1 cannam@167: func_cl_dashL "$2" cannam@167: ;; cannam@167: -L*) cannam@167: func_cl_dashL "${1#-L}" cannam@167: ;; cannam@167: -static) cannam@167: shared=false cannam@167: ;; cannam@167: -Wl,*) cannam@167: arg=${1#-Wl,} cannam@167: save_ifs="$IFS"; IFS=',' cannam@167: for flag in $arg; do cannam@167: IFS="$save_ifs" cannam@167: linker_opts="$linker_opts $flag" cannam@167: done cannam@167: IFS="$save_ifs" cannam@167: ;; cannam@167: -Xlinker) cannam@167: eat=1 cannam@167: linker_opts="$linker_opts $2" cannam@167: ;; cannam@167: -*) cannam@167: set x "$@" "$1" cannam@167: shift cannam@167: ;; cannam@167: *.cc | *.CC | *.cxx | *.CXX | *.[cC]++) cannam@167: func_file_conv "$1" cannam@167: set x "$@" -Tp"$file" cannam@167: shift cannam@167: ;; cannam@167: *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO]) cannam@167: func_file_conv "$1" mingw cannam@167: set x "$@" "$file" cannam@167: shift cannam@167: ;; cannam@167: *) cannam@167: set x "$@" "$1" cannam@167: shift cannam@167: ;; cannam@167: esac cannam@167: fi cannam@167: shift cannam@167: done cannam@167: if test -n "$linker_opts"; then cannam@167: linker_opts="-link$linker_opts" cannam@167: fi cannam@167: exec "$@" $linker_opts cannam@167: exit 1 cannam@167: } cannam@167: cannam@167: eat= cannam@167: cannam@167: case $1 in cannam@167: '') cannam@167: echo "$0: No command. Try '$0 --help' for more information." 1>&2 cannam@167: exit 1; cannam@167: ;; cannam@167: -h | --h*) cannam@167: cat <<\EOF cannam@167: Usage: compile [--help] [--version] PROGRAM [ARGS] cannam@167: cannam@167: Wrapper for compilers which do not understand '-c -o'. cannam@167: Remove '-o dest.o' from ARGS, run PROGRAM with the remaining cannam@167: arguments, and rename the output as expected. cannam@167: cannam@167: If you are trying to build a whole package this is not the cannam@167: right script to run: please start by reading the file 'INSTALL'. cannam@167: cannam@167: Report bugs to . cannam@167: EOF cannam@167: exit $? cannam@167: ;; cannam@167: -v | --v*) cannam@167: echo "compile $scriptversion" cannam@167: exit $? cannam@167: ;; cannam@167: cl | *[/\\]cl | cl.exe | *[/\\]cl.exe ) cannam@167: func_cl_wrapper "$@" # Doesn't return... cannam@167: ;; cannam@167: esac cannam@167: cannam@167: ofile= cannam@167: cfile= cannam@167: cannam@167: for arg cannam@167: do cannam@167: if test -n "$eat"; then cannam@167: eat= cannam@167: else cannam@167: case $1 in cannam@167: -o) cannam@167: # configure might choose to run compile as 'compile cc -o foo foo.c'. cannam@167: # So we strip '-o arg' only if arg is an object. cannam@167: eat=1 cannam@167: case $2 in cannam@167: *.o | *.obj) cannam@167: ofile=$2 cannam@167: ;; cannam@167: *) cannam@167: set x "$@" -o "$2" cannam@167: shift cannam@167: ;; cannam@167: esac cannam@167: ;; cannam@167: *.c) cannam@167: cfile=$1 cannam@167: set x "$@" "$1" cannam@167: shift cannam@167: ;; cannam@167: *) cannam@167: set x "$@" "$1" cannam@167: shift cannam@167: ;; cannam@167: esac cannam@167: fi cannam@167: shift cannam@167: done cannam@167: cannam@167: if test -z "$ofile" || test -z "$cfile"; then cannam@167: # If no '-o' option was seen then we might have been invoked from a cannam@167: # pattern rule where we don't need one. That is ok -- this is a cannam@167: # normal compilation that the losing compiler can handle. If no cannam@167: # '.c' file was seen then we are probably linking. That is also cannam@167: # ok. cannam@167: exec "$@" cannam@167: fi cannam@167: cannam@167: # Name of file we expect compiler to create. cannam@167: cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'` cannam@167: cannam@167: # Create the lock directory. cannam@167: # Note: use '[/\\:.-]' here to ensure that we don't use the same name cannam@167: # that we are using for the .o file. Also, base the name on the expected cannam@167: # object file name, since that is what matters with a parallel build. cannam@167: lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d cannam@167: while true; do cannam@167: if mkdir "$lockdir" >/dev/null 2>&1; then cannam@167: break cannam@167: fi cannam@167: sleep 1 cannam@167: done cannam@167: # FIXME: race condition here if user kills between mkdir and trap. cannam@167: trap "rmdir '$lockdir'; exit 1" 1 2 15 cannam@167: cannam@167: # Run the compile. cannam@167: "$@" cannam@167: ret=$? cannam@167: cannam@167: if test -f "$cofile"; then cannam@167: test "$cofile" = "$ofile" || mv "$cofile" "$ofile" cannam@167: elif test -f "${cofile}bj"; then cannam@167: test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" cannam@167: fi cannam@167: cannam@167: rmdir "$lockdir" cannam@167: exit $ret cannam@167: cannam@167: # Local Variables: cannam@167: # mode: shell-script cannam@167: # sh-indentation: 2 cannam@167: # eval: (add-hook 'write-file-hooks 'time-stamp) cannam@167: # time-stamp-start: "scriptversion=" cannam@167: # time-stamp-format: "%:y-%02m-%02d.%02H" cannam@167: # time-stamp-time-zone: "UTC" cannam@167: # time-stamp-end: "; # UTC" cannam@167: # End: