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