compile revision 72320d7b
1fa225cbcSrjs#! /bin/sh 2fa225cbcSrjs# Wrapper for compilers which do not understand '-c -o'. 3fa225cbcSrjs 4fa225cbcSrjsscriptversion=2018-03-07.03; # UTC 5fa225cbcSrjs 6fa225cbcSrjs# Copyright (C) 1999-2021 Free Software Foundation, Inc. 7fa225cbcSrjs# Written by Tom Tromey <tromey@cygnus.com>. 8fa225cbcSrjs# 9fa225cbcSrjs# This program is free software; you can redistribute it and/or modify 10fa225cbcSrjs# it under the terms of the GNU General Public License as published by 11fa225cbcSrjs# the Free Software Foundation; either version 2, or (at your option) 12fa225cbcSrjs# any later version. 13fa225cbcSrjs# 14fa225cbcSrjs# This program is distributed in the hope that it will be useful, 15fa225cbcSrjs# but WITHOUT ANY WARRANTY; without even the implied warranty of 16fa225cbcSrjs# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17fa225cbcSrjs# GNU General Public License for more details. 18fa225cbcSrjs# 19fa225cbcSrjs# You should have received a copy of the GNU General Public License 20fa225cbcSrjs# along with this program. If not, see <https://www.gnu.org/licenses/>. 21fa225cbcSrjs 22fa225cbcSrjs# As a special exception to the GNU General Public License, if you 23fa225cbcSrjs# distribute this file as part of a program that contains a 24fa225cbcSrjs# configuration script generated by Autoconf, you may include it under 25fa225cbcSrjs# the same distribution terms that you use for the rest of that program. 26fa225cbcSrjs 27fa225cbcSrjs# This file is maintained in Automake, please report 28fa225cbcSrjs# bugs to <bug-automake@gnu.org> or send patches to 29fa225cbcSrjs# <automake-patches@gnu.org>. 30fa225cbcSrjs 31fa225cbcSrjsnl=' 32fa225cbcSrjs' 33fa225cbcSrjs 34fa225cbcSrjs# We need space, tab and new line, in precisely that order. Quoting is 35fa225cbcSrjs# there to prevent tools from complaining about whitespace usage. 36fa225cbcSrjsIFS=" "" $nl" 37fa225cbcSrjs 38fa225cbcSrjsfile_conv= 39fa225cbcSrjs 40fa225cbcSrjs# func_file_conv build_file lazy 41fa225cbcSrjs# Convert a $build file to $host form and store it in $file 42fa225cbcSrjs# Currently only supports Windows hosts. If the determined conversion 43fa225cbcSrjs# type is listed in (the comma separated) LAZY, no conversion will 44fa225cbcSrjs# take place. 45fa225cbcSrjsfunc_file_conv () 46fa225cbcSrjs{ 47fa225cbcSrjs file=$1 48fa225cbcSrjs case $file in 49fa225cbcSrjs / | /[!/]*) # absolute file, and not a UNC file 50fa225cbcSrjs if test -z "$file_conv"; then 51fa225cbcSrjs # lazily determine how to convert abs files 52fa225cbcSrjs case `uname -s` in 53fa225cbcSrjs MINGW*) 54fa225cbcSrjs file_conv=mingw 55fa225cbcSrjs ;; 56fa225cbcSrjs CYGWIN* | MSYS*) 57fa225cbcSrjs file_conv=cygwin 58fa225cbcSrjs ;; 59fa225cbcSrjs *) 60fa225cbcSrjs file_conv=wine 61fa225cbcSrjs ;; 62fa225cbcSrjs esac 63fa225cbcSrjs fi 64fa225cbcSrjs case $file_conv/,$2, in 65fa225cbcSrjs *,$file_conv,*) 66fa225cbcSrjs ;; 67fa225cbcSrjs mingw/*) 68fa225cbcSrjs file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` 69fa225cbcSrjs ;; 70fa225cbcSrjs cygwin/* | msys/*) 71fa225cbcSrjs file=`cygpath -m "$file" || echo "$file"` 72fa225cbcSrjs ;; 73fa225cbcSrjs wine/*) 74fa225cbcSrjs file=`winepath -w "$file" || echo "$file"` 75fa225cbcSrjs ;; 76fa225cbcSrjs esac 77fa225cbcSrjs ;; 78fa225cbcSrjs esac 79fa225cbcSrjs} 80fa225cbcSrjs 81fa225cbcSrjs# func_cl_dashL linkdir 82fa225cbcSrjs# Make cl look for libraries in LINKDIR 83fa225cbcSrjsfunc_cl_dashL () 84fa225cbcSrjs{ 85fa225cbcSrjs func_file_conv "$1" 86fa225cbcSrjs if test -z "$lib_path"; then 87fa225cbcSrjs lib_path=$file 88fa225cbcSrjs else 89fa225cbcSrjs lib_path="$lib_path;$file" 90fa225cbcSrjs fi 91fa225cbcSrjs linker_opts="$linker_opts -LIBPATH:$file" 92fa225cbcSrjs} 93fa225cbcSrjs 94fa225cbcSrjs# func_cl_dashl library 95fa225cbcSrjs# Do a library search-path lookup for cl 96fa225cbcSrjsfunc_cl_dashl () 97fa225cbcSrjs{ 98fa225cbcSrjs lib=$1 99fa225cbcSrjs found=no 100fa225cbcSrjs save_IFS=$IFS 101fa225cbcSrjs IFS=';' 102fa225cbcSrjs for dir in $lib_path $LIB 103fa225cbcSrjs do 104fa225cbcSrjs IFS=$save_IFS 105fa225cbcSrjs if $shared && test -f "$dir/$lib.dll.lib"; then 106fa225cbcSrjs found=yes 107fa225cbcSrjs lib=$dir/$lib.dll.lib 108fa225cbcSrjs break 109fa225cbcSrjs fi 110fa225cbcSrjs if test -f "$dir/$lib.lib"; then 111fa225cbcSrjs found=yes 112fa225cbcSrjs lib=$dir/$lib.lib 113fa225cbcSrjs break 114fa225cbcSrjs fi 115fa225cbcSrjs if test -f "$dir/lib$lib.a"; then 116fa225cbcSrjs found=yes 117fa225cbcSrjs lib=$dir/lib$lib.a 118fa225cbcSrjs break 119fa225cbcSrjs fi 120fa225cbcSrjs done 121fa225cbcSrjs IFS=$save_IFS 122fa225cbcSrjs 123fa225cbcSrjs if test "$found" != yes; then 124 lib=$lib.lib 125 fi 126} 127 128# func_cl_wrapper cl arg... 129# Adjust compile command to suit cl 130func_cl_wrapper () 131{ 132 # Assume a capable shell 133 lib_path= 134 shared=: 135 linker_opts= 136 for arg 137 do 138 if test -n "$eat"; then 139 eat= 140 else 141 case $1 in 142 -o) 143 # configure might choose to run compile as 'compile cc -o foo foo.c'. 144 eat=1 145 case $2 in 146 *.o | *.[oO][bB][jJ]) 147 func_file_conv "$2" 148 set x "$@" -Fo"$file" 149 shift 150 ;; 151 *) 152 func_file_conv "$2" 153 set x "$@" -Fe"$file" 154 shift 155 ;; 156 esac 157 ;; 158 -I) 159 eat=1 160 func_file_conv "$2" mingw 161 set x "$@" -I"$file" 162 shift 163 ;; 164 -I*) 165 func_file_conv "${1#-I}" mingw 166 set x "$@" -I"$file" 167 shift 168 ;; 169 -l) 170 eat=1 171 func_cl_dashl "$2" 172 set x "$@" "$lib" 173 shift 174 ;; 175 -l*) 176 func_cl_dashl "${1#-l}" 177 set x "$@" "$lib" 178 shift 179 ;; 180 -L) 181 eat=1 182 func_cl_dashL "$2" 183 ;; 184 -L*) 185 func_cl_dashL "${1#-L}" 186 ;; 187 -static) 188 shared=false 189 ;; 190 -Wl,*) 191 arg=${1#-Wl,} 192 save_ifs="$IFS"; IFS=',' 193 for flag in $arg; do 194 IFS="$save_ifs" 195 linker_opts="$linker_opts $flag" 196 done 197 IFS="$save_ifs" 198 ;; 199 -Xlinker) 200 eat=1 201 linker_opts="$linker_opts $2" 202 ;; 203 -*) 204 set x "$@" "$1" 205 shift 206 ;; 207 *.cc | *.CC | *.cxx | *.CXX | *.[cC]++) 208 func_file_conv "$1" 209 set x "$@" -Tp"$file" 210 shift 211 ;; 212 *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO]) 213 func_file_conv "$1" mingw 214 set x "$@" "$file" 215 shift 216 ;; 217 *) 218 set x "$@" "$1" 219 shift 220 ;; 221 esac 222 fi 223 shift 224 done 225 if test -n "$linker_opts"; then 226 linker_opts="-link$linker_opts" 227 fi 228 exec "$@" $linker_opts 229 exit 1 230} 231 232eat= 233 234case $1 in 235 '') 236 echo "$0: No command. Try '$0 --help' for more information." 1>&2 237 exit 1; 238 ;; 239 -h | --h*) 240 cat <<\EOF 241Usage: compile [--help] [--version] PROGRAM [ARGS] 242 243Wrapper for compilers which do not understand '-c -o'. 244Remove '-o dest.o' from ARGS, run PROGRAM with the remaining 245arguments, and rename the output as expected. 246 247If you are trying to build a whole package this is not the 248right script to run: please start by reading the file 'INSTALL'. 249 250Report bugs to <bug-automake@gnu.org>. 251EOF 252 exit $? 253 ;; 254 -v | --v*) 255 echo "compile $scriptversion" 256 exit $? 257 ;; 258 cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \ 259 icl | *[/\\]icl | icl.exe | *[/\\]icl.exe ) 260 func_cl_wrapper "$@" # Doesn't return... 261 ;; 262esac 263 264ofile= 265cfile= 266 267for arg 268do 269 if test -n "$eat"; then 270 eat= 271 else 272 case $1 in 273 -o) 274 # configure might choose to run compile as 'compile cc -o foo foo.c'. 275 # So we strip '-o arg' only if arg is an object. 276 eat=1 277 case $2 in 278 *.o | *.obj) 279 ofile=$2 280 ;; 281 *) 282 set x "$@" -o "$2" 283 shift 284 ;; 285 esac 286 ;; 287 *.c) 288 cfile=$1 289 set x "$@" "$1" 290 shift 291 ;; 292 *) 293 set x "$@" "$1" 294 shift 295 ;; 296 esac 297 fi 298 shift 299done 300 301if test -z "$ofile" || test -z "$cfile"; then 302 # If no '-o' option was seen then we might have been invoked from a 303 # pattern rule where we don't need one. That is ok -- this is a 304 # normal compilation that the losing compiler can handle. If no 305 # '.c' file was seen then we are probably linking. That is also 306 # ok. 307 exec "$@" 308fi 309 310# Name of file we expect compiler to create. 311cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'` 312 313# Create the lock directory. 314# Note: use '[/\\:.-]' here to ensure that we don't use the same name 315# that we are using for the .o file. Also, base the name on the expected 316# object file name, since that is what matters with a parallel build. 317lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d 318while true; do 319 if mkdir "$lockdir" >/dev/null 2>&1; then 320 break 321 fi 322 sleep 1 323done 324# FIXME: race condition here if user kills between mkdir and trap. 325trap "rmdir '$lockdir'; exit 1" 1 2 15 326 327# Run the compile. 328"$@" 329ret=$? 330 331if test -f "$cofile"; then 332 test "$cofile" = "$ofile" || mv "$cofile" "$ofile" 333elif test -f "${cofile}bj"; then 334 test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" 335fi 336 337rmdir "$lockdir" 338exit $ret 339 340# Local Variables: 341# mode: shell-script 342# sh-indentation: 2 343# eval: (add-hook 'before-save-hook 'time-stamp) 344# time-stamp-start: "scriptversion=" 345# time-stamp-format: "%:y-%02m-%02d.%02H" 346# time-stamp-time-zone: "UTC0" 347# time-stamp-end: "; # UTC" 348# End: 349