Mercurial > hg > sv-dependency-builds
annotate src/fftw-3.3.5/support/twovers.sh @ 80:0b60a66de5e2
This Mac compatibility fix appears to work, resolving SourceForge issue #273 Port Audio Fail on MacOS Catalina (10.15) - merging back
author | Chris Cannam |
---|---|
date | Thu, 31 Oct 2019 13:20:41 +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 */" |