1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-04-02 03:14:59 +00:00
freeswitch/libs/portaudio.build.sh

15 lines
123 B
Bash
Raw Normal View History

arch=`uname -m`
opts=""
if [ $arch = "x86_64" ] ; then
opts="-fPIC"
fi
CFLAGS=$opts ./configure $@
make
make install