annotate src/fftw-3.3.5/support/twovers.sh @ 78:7ea7031c0e5c pa_catalina

Apply patch from Tim Bunnell on PortAudio mailing list (2016-12-28, Mac 10.11 deprecation warning)
author Chris Cannam
date Wed, 30 Oct 2019 11:28:45 +0000
parents 2cd0e3b3e1fd
children
rev   line source
Chris@42 1 #! /bin/sh
Chris@42 2
Chris@42 3 # wrapper to generate two codelet versions, with and without
Chris@42 4 # fma
Chris@42 5
Chris@42 6 genfft=$1
Chris@42 7 shift
Chris@42 8
Chris@42 9 echo "#ifdef HAVE_FMA"
Chris@42 10 echo
Chris@42 11 $genfft -fma -reorder-insns -schedule-for-pipeline $*
Chris@42 12 echo
Chris@42 13 echo "#else /* HAVE_FMA */"
Chris@42 14 echo
Chris@42 15 $genfft $*
Chris@42 16 echo
Chris@42 17 echo "#endif /* HAVE_FMA */"