Merge pull request #1128 from mstorsjo/reduce-prepare-compilation

Only build the needed binaries in run_PrepareAllTestData.sh
This commit is contained in:
ruil2 2014-07-10 09:27:20 +08:00
commit 70e9ff3a33

View File

@ -44,11 +44,11 @@ runBuildCodec()
if [ "${BitType}" -eq 64 ]
then
make clean
make -B ENABLE64BIT=Yes
make -B ENABLE64BIT=Yes h264dec h264enc
elif [ "${BitType}" -eq 32 ]
then
make clean
make -B ENABLE64BIT=No
make -B ENABLE64BIT=No h264dec h264enc
else
echo "usage: runBuildCodec \64/32 #bits"
exit 1