Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions turnip_builder.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ prepare_workdir(){
echo "Exracting mesa source ..." $'\n'
unzip mesa-main.zip &> /dev/null
cd mesa-$srcfolder
echo "Downloading patchset ..." $'\n'
curl -L https://github.com/whitebelyash/mesa-tu8/releases/download/patchset-head-v2/tu8_kgsl_26.patch --output a8xx.patch &> /dev/null
echo "Applying patchset ..." $'\n'
patch -p1 < a8xx.patch
}


Expand Down Expand Up @@ -113,8 +117,6 @@ EOF
--native-file "native.txt" \
--prefix /tmp/turnip \
-Dbuildtype=release \
-Db_lto=true \
-Db_lto_mode=thin \
-Dstrip=true \
-Dplatforms=android \
-Dvideo-codecs= \
Expand Down