From c8011a2851ab821942748dbab24c480398fb406c Mon Sep 17 00:00:00 2001 From: Levon Date: Wed, 10 Jan 2024 17:27:25 -0600 Subject: [PATCH] build --- scripts/build.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/build.sh b/scripts/build.sh index 5c2560a..6c6d1dc 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -13,10 +13,10 @@ git clone https://git.ffmpeg.org/ffmpeg.git "$FFMPEG_DIR" # build svt-av1 cd "$SVT_DIR/" || exit git pull -# rm -rf build && mkdir build && cd build || exit -# cmake .. -DCMAKE_BUILD_TYPE=Release -DSVT_AV1_LTO=ON -DNATIVE=ON -# make -j "$(nproc)" -# sudo make install +mkdir build && cd build || exit +cmake .. -DCMAKE_BUILD_TYPE=Release -DSVT_AV1_LTO=ON -DNATIVE=ON +make -j "$(nproc)" +sudo make install # build rav1e cd "$RAV1E_DIR/" || exit