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