Mercurial > hg > sv-dependency-builds
annotate src/fftw-3.3.5/support/twovers.sh @ 53:e1712f7d74a4
Rebuild with DW2 exception handling to match Qt
author | Chris Cannam |
---|---|
date | Thu, 27 Oct 2016 10:26:57 +0100 |
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 */" |