annotate src/opusfile-0.9/compile @ 169:223a55898ab9 tip default

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