mirror of https://github.com/thesofproject/sof.git
33 lines
576 B
Bash
Executable File
33 lines
576 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# fail on any errors
|
|
set -e
|
|
|
|
# parse the args
|
|
for args in $@
|
|
do
|
|
if [[ "$args" == "-l" ]]
|
|
then
|
|
BUILD_LOCAL=1
|
|
fi
|
|
done
|
|
|
|
# run autogen.sh
|
|
./autogen.sh
|
|
|
|
pwd=`pwd`
|
|
|
|
# Build library for host platform architecture
|
|
if [[ "x$BUILD_LOCAL" == "x" ]]
|
|
then
|
|
./configure --with-arch=host --enable-library=yes --host=x86_64-unknown-linux-gnu
|
|
else
|
|
# make sure host lib is build in local folder
|
|
echo "BUILD in local folder!"
|
|
rm -rf $pwd/local/
|
|
./configure --with-arch=host --enable-library=yes --host=x86_64-unknown-linux-gnu --prefix=$pwd/host-lib
|
|
fi
|
|
|
|
make
|
|
make install
|