1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
#! /bin/bash -e
# Define some common paths
. faustpath
# Define compilation flags
. faustoptflags
# Helper file to build the 'help' option
. usage.sh
CXXFLAGS+=" $MYGCCFLAGS" # So that additional CXXFLAGS can be used
# The architecture file name
ARCHFILE1=$FAUSTARCH/comparator/minimal-floating-point.cpp
ARCHFILE2=$FAUSTARCH/comparator/minimal-fixed-point.cpp
# Global variables
OPTIONS=""
FILES=""
#-------------------------------------------------------------------
# dispatch command arguments
#-------------------------------------------------------------------
while [ $1 ]
do
p=$1
if [ $p = "-help" ] || [ $p = "-h" ]; then
usage faust2comparator "[options] [Faust options] <file.dsp>"
exit
fi
echo "dispatch command arguments"
if [ ${p:0:1} = "-" ]; then
OPTIONS="$OPTIONS $p"
elif [[ -f "$p" ]] && [ ${p: -4} == ".dsp" ]; then
FILES="$FILES $p"
else
OPTIONS="$OPTIONS $p"
fi
shift
done
#-------------------------------------------------------------------
# compile the *.dsp files
#-------------------------------------------------------------------
for f in $FILES; do
# compile the DSP to c++ using the architecture file
echo "compile the DSP to c++ using the architecture file"
faust -i -a $ARCHFILE1 $OPTIONS -cn "fldsp" "$f" -o "float.cpp" || exit
faust -i -a $ARCHFILE2 $OPTIONS -fx -cn "fxdsp" "$f" -o "fixed.cpp" -it || exit
# compile c++ to binary
echo "compile c++ to binary"
(
$CXX $CXXFLAGS -g "$FAUSTARCH/comparator/compclass.cpp" "-I/usr/local/include/ap_fixed" `pkg-config --cflags --static --libs sndfile jack gtk+-2.0` -o "${f%.dsp}"
) > /dev/null || exit
# remove tempory files # actually, they're useful to have to track bugs in FX inference
# rm -f "float.cpp"
# rm -f "fixed.cpp"
# collect binary file name for FaustWorks
BINARIES="$BINARIES${f%.dsp};"
done
echo $BINARIES
|