make static to improve linux build script vvc

This commit is contained in:
Martin Eesmaa 2022-09-29 21:31:51 +10:00 committed by GitHub
parent 97494d5417
commit 037f37c071
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,10 +11,10 @@ cd ~/Downloads
git clone --depth=1 https://github.com/fraunhoferhhi/vvenc
git clone --depth=1 https://github.com/fraunhoferhhi/vvdec
cd vvenc
make release
mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_EXE_LINKER_FLAGS="-static" .. && make
cd ../
cd vvdec
make release
mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_EXE_LINKER_FLAGS="-static" .. && make
cd ../
echo Please see the build files following starting with vvenc/bin/release-static
pause