vpx/scripts/confbuild.sh
Yi Luo bceaa511e1 Use confbuild.sh for daily work
Change-Id: Ic6299827507df976111b7d3c1641ec316621901d
2017-08-08 09:42:04 -07:00

23 lines
393 B
Bash
Executable File

#!/bin/sh
root_dir=$1
dist_dir=$2
build_dir=$root_dir/$dist_dir
script_dir=~/Dev/sandbox/libvpx/scripts
exp_tool=experimental
cd $build_dir
make clean > /dev/null
$script_dir/av1_config.sh $exp_tool
make -j > /dev/null
if [ $? -ne 0 ]; then
echo "AV1 build failed on experiment: " $exp_tool
exit 1
fi
# test_dir=~/Dev/nightly
# cp -f ./aomenc $test_dir/.
# cp -f ./aomdec $test_dir/.