Mercurial > hg > sv-dependency-builds
annotate src/fftw-3.3.3/support/twovers.sh @ 22:b07fe9e906dc
Portaudio: add missed file
author | Chris Cannam |
---|---|
date | Tue, 26 Mar 2013 12:14:11 +0000 |
parents | 37bf6b4a2645 |
children |
rev | line source |
---|---|
Chris@10 | 1 #! /bin/sh |
Chris@10 | 2 |
Chris@10 | 3 # wrapper to generate two codelet versions, with and without |
Chris@10 | 4 # fma |
Chris@10 | 5 |
Chris@10 | 6 genfft=$1 |
Chris@10 | 7 shift |
Chris@10 | 8 |
Chris@10 | 9 echo "#ifdef HAVE_FMA" |
Chris@10 | 10 echo |
Chris@10 | 11 $genfft -fma -reorder-insns -schedule-for-pipeline $* |
Chris@10 | 12 echo |
Chris@10 | 13 echo "#else /* HAVE_FMA */" |
Chris@10 | 14 echo |
Chris@10 | 15 $genfft $* |
Chris@10 | 16 echo |
Chris@10 | 17 echo "#endif /* HAVE_FMA */" |