pinebuds/build.sh

9 lines
161 B
Bash
Raw Normal View History

2022-08-15 20:30:33 -05:00
make -j T=mic_alg DEBUG=1 > log.txt 2>&1
if [ $? -eq 0 ];then
echo "build success"
else
echo "build failed and call log.txt"
cat log.txt | grep "error:*"
fi