23 lines
393 B
Bash
Executable File
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/.
|