2 # Wrapper for compilers which do not understand `-c -o'.
4 scriptversion=2010-11-15.09; # UTC
6 # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009, 2010 Free Software
8 # Written by Tom Tromey <tromey@cygnus.com>.
10 # This program is free software; you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 2, or (at your option)
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
20 # You should have received a copy of the GNU General Public License
21 # along with this program. If not, see <http://www.gnu.org/licenses/>.
23 # As a special exception to the GNU General Public License, if you
24 # distribute this file as part of a program that contains a
25 # configuration script generated by Autoconf, you may include it under
26 # the same distribution terms that you use for the rest of that program.
28 # This file is maintained in Automake, please report
29 # bugs to <bug-automake@gnu.org> or send patches to
30 # <automake-patches@gnu.org>.
35 # We need space, tab and new line, in precisely that order. Quoting is
36 # there to prevent tools from complaining about whitespace usage.
41 # func_file_conv build_file lazy
42 # Convert a $build file to $host form and store it in $file
43 # Currently only supports Win32 hosts. If the determined conversion
44 # type is listed in (the comma separated) LAZY, no conversion will
50 / | /[!/]*) # absolute file, and not a UNC file
51 if test -z "$file_conv"; then
52 # lazily determine how to convert abs files
65 case $file_conv/,$2, in
69 file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'`
72 file=`cygpath -m "$file" || echo "$file"`
75 file=`winepath -w "$file" || echo "$file"`
82 # func_cl_wrapper cl arg...
83 # Adjust compile command to suit cl
86 # Assume a capable shell
92 if test -n "$eat"; then
97 # configure might choose to run compile as `compile cc -o foo foo.c'.
100 *.o | *.[oO][bB][jJ])
102 set x "$@" -Fo"$file"
107 set x "$@" -Fe"$file"
113 func_file_conv "${1#-I}" mingw
122 for dir in $lib_path $LIB
125 if $shared && test -f "$dir/$lib.dll.lib"; then
127 set x "$@" "$dir/$lib.dll.lib"
130 if test -f "$dir/$lib.lib"; then
132 set x "$@" "$dir/$lib.lib"
138 test "$found" != yes && set x "$@" "$lib.lib"
142 func_file_conv "${1#-L}"
143 if test -z "$lib_path"; then
146 lib_path="$lib_path;$file"
148 linker_opts="$linker_opts -LIBPATH:$file"
155 save_ifs="$IFS"; IFS=','
158 linker_opts="$linker_opts $flag"
164 linker_opts="$linker_opts $2"
170 *.cc | *.CC | *.cxx | *.CXX | *.[cC]++)
172 set x "$@" -Tp"$file"
175 *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO])
176 func_file_conv "$1" mingw
188 if test -n "$linker_opts"; then
189 linker_opts="-link$linker_opts"
191 exec "$@" $linker_opts
199 echo "$0: No command. Try \`$0 --help' for more information." 1>&2
204 Usage: compile [--help] [--version] PROGRAM [ARGS]
206 Wrapper for compilers which do not understand `-c -o'.
207 Remove `-o dest.o' from ARGS, run PROGRAM with the remaining
208 arguments, and rename the output as expected.
210 If you are trying to build a whole package this is not the
211 right script to run: please start by reading the file `INSTALL'.
213 Report bugs to <bug-automake@gnu.org>.
218 echo "compile $scriptversion"
221 cl | *[/\\]cl | cl.exe | *[/\\]cl.exe )
222 func_cl_wrapper "$@" # Doesn't return...
231 if test -n "$eat"; then
236 # configure might choose to run compile as `compile cc -o foo foo.c'.
237 # So we strip `-o arg' only if arg is an object.
263 if test -z "$ofile" || test -z "$cfile"; then
264 # If no `-o' option was seen then we might have been invoked from a
265 # pattern rule where we don't need one. That is ok -- this is a
266 # normal compilation that the losing compiler can handle. If no
267 # `.c' file was seen then we are probably linking. That is also
272 # Name of file we expect compiler to create.
273 cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'`
275 # Create the lock directory.
276 # Note: use `[/\\:.-]' here to ensure that we don't use the same name
277 # that we are using for the .o file. Also, base the name on the expected
278 # object file name, since that is what matters with a parallel build.
279 lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d
281 if mkdir "$lockdir" >/dev/null 2>&1; then
286 # FIXME: race condition here if user kills between mkdir and trap.
287 trap "rmdir '$lockdir'; exit 1" 1 2 15
293 if test -f "$cofile"; then
294 test "$cofile" = "$ofile" || mv "$cofile" "$ofile"
295 elif test -f "${cofile}bj"; then
296 test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile"
305 # eval: (add-hook 'write-file-hooks 'time-stamp)
306 # time-stamp-start: "scriptversion="
307 # time-stamp-format: "%:y-%02m-%02d.%02H"
308 # time-stamp-time-zone: "UTC"
309 # time-stamp-end: "; # UTC"