Mercurial > hg > sv-dependency-builds
annotate src/fftw-3.3.5/support/twovers.sh @ 56:af97cad61ff0
Add updated build of PortAudio for OSX
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Tue, 03 Jan 2017 15:10:52 +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 */" |