From 037f37c071b163a6bc6c85d55995c8bdfbafc0cc Mon Sep 17 00:00:00 2001 From: Martin Eesmaa Date: Thu, 29 Sep 2022 21:31:51 +1000 Subject: [PATCH] make static to improve linux build script vvc --- vvcbuildfraun/BuildforLinux.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vvcbuildfraun/BuildforLinux.sh b/vvcbuildfraun/BuildforLinux.sh index deb01fc..37b77c5 100644 --- a/vvcbuildfraun/BuildforLinux.sh +++ b/vvcbuildfraun/BuildforLinux.sh @@ -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