Use cmake instead of configure

Change-Id: I07267eb6a7ac9b96325433a7d3ff6b1d68365df3
This commit is contained in:
Yi Luo
2018-01-10 12:28:30 -08:00
parent 74cc050622
commit 0186ebda84
3 changed files with 5 additions and 15 deletions

View File

@@ -1,7 +1,7 @@
#!/bin/sh #!/bin/sh
video=~/Dev/samples/videos/midres/BasketballDrill_832x480_50.y4m video=~/Dev/samples/videos/midres/BasketballDrill_832x480_50.y4m
frames=2 frames=60
bitrate=800 bitrate=800
fps="50/1" fps="50/1"
wide= wide=

View File

@@ -1,23 +1,13 @@
#!/bin/sh #!/bin/sh
#set -x #set -x
platform=x86_64-linux-gcc
codec=--enable-av1
libsrc=aom libsrc=aom
test_dir=~/Dev/nightly test_dir=~/Dev/nightly
script_dir=~/Dev/sandbox/libvpx/scripts
tool=
common="--disable-unit-tests --disable-docs" echo "cmake ../$libsrc -DCONFIG_UNIT_TESTS=0 -DENABLE_DOCS=0"
debug=
#. $script_dir/disabled_list.sh cmake ../$libsrc -DCONFIG_UNIT_TESTS=0 -DENABLE_DOCS=0 > /dev/null 2>&1
disabled=
echo ../$libsrc/configure $common $debug $disabled $tool
../$libsrc/configure $common $debug $disabled $tool > /dev/null
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo "Error: configure fails!" > $test_dir/aom_error_config.txt echo "Error: cmake configure fails!" > $test_dir/aom_error_config.txt
exit 1 exit 1
fi fi

View File

@@ -44,7 +44,7 @@ $script_path/aom_nightly_speed.sh $av1_code $pdfps $petime $speed $html_log_file
users=luoyi users=luoyi
host_name=`hostname` host_name=`hostname`
sender=luoyi sender=luoyi
#cc_list="--cc=yunqingwang,vpx-eng" cc_list="--cc=yunqingwang,vpx-eng"
$script_path/gen_html_footer.sh >> $log_path/$html_log_file $script_path/gen_html_footer.sh >> $log_path/$html_log_file