-
Notifications
You must be signed in to change notification settings - Fork 8
/
turnip_builder.sh
executable file
·229 lines (198 loc) · 7.19 KB
/
turnip_builder.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
#!/bin/bash -e
green='\033[0;32m'
red='\033[0;31m'
nocolor='\033[0m'
deps="meson ninja patchelf unzip curl pip flex bison zip git"
workdir="$(pwd)/turnip_workdir"
packagedir="$workdir/turnip_module"
ndkver="android-ndk-r26c"
sdkver="31"
mesasrc="https://gitlab.freedesktop.org/mesa/mesa.git"
#array of string => commit/branch;patch args
patches=(
#"fix-for-anon-file;../../turnip-patches/fix-for-anon-file.patch;"
#"fix-for-getprogname;../../turnip-patches/fix-for-getprogname.patch;"
#"zink_fixes;../../turnip-patches/zink_fixes.patch;"
#"dri3;../../turnip-patches/dri3.patch;"
#"descr-prefetching-optimization-a7xx;merge_requests/29873;"
#"make-gmem-work-with-preemption;merge_requests/29871;"
#"VK_EXT_fragment_density_map;merge_requests/29938;"
)
commit=""
commit_short=""
mesa_version=""
vulkan_version=""
clear
# there are 4 functions here, simply comment to disable.
# you can insert your own function and make a pull request.
run_all(){
check_deps
prepare_workdir
build_lib_for_android
port_lib_for_adrenotool
if (( ${#patches[@]} )); then
prepare_workdir "patched"
build_lib_for_android
port_lib_for_adrenotool "patched"
fi
}
check_deps(){
echo "Checking system for required Dependencies ..."
for deps_chk in $deps;
do
sleep 0.25
if command -v "$deps_chk" >/dev/null 2>&1 ; then
echo -e "$green - $deps_chk found $nocolor"
else
echo -e "$red - $deps_chk not found, can't countinue. $nocolor"
deps_missing=1
fi;
done
if [ "$deps_missing" == "1" ]
then echo "Please install missing dependencies" && exit 1
fi
}
prepare_workdir(){
echo "Creating and entering to work directory ..." $'\n'
mkdir -p "$workdir" && cd "$_"
if [ -z "${ANDROID_NDK_LATEST_HOME}" ]; then
if [ ! -n "$(ls -d android-ndk*)" ]; then
echo "Downloading android-ndk from google server (~640 MB) ..." $'\n'
curl https://dl.google.com/android/repository/"$ndkver"-linux.zip --output "$ndkver"-linux.zip &> /dev/null
###
echo "Exracting android-ndk to a folder ..." $'\n'
unzip "$ndkver"-linux.zip &> /dev/null
fi
else
echo "Using android ndk from github image"
fi
if [ -z "$1" ]; then
if [ -d mesa ]; then
echo "Removing old mesa ..." $'\n'
rm -rf mesa
fi
echo "Cloning mesa ..." $'\n'
git clone --depth=1 "$mesasrc" &> /dev/null
cd mesa
commit_short=$(git rev-parse --short HEAD)
commit=$(git rev-parse HEAD)
mesa_version=$(cat VERSION | xargs)
version=$(awk -F'COMPLETE VK_MAKE_API_VERSION(|)' '{print $2}' <<< $(cat include/vulkan/vulkan_core.h) | xargs)
major=$(echo $version | cut -d "," -f 2 | xargs)
minor=$(echo $version | cut -d "," -f 3 | xargs)
patch=$(awk -F'VK_HEADER_VERSION |\n#define' '{print $2}' <<< $(cat include/vulkan/vulkan_core.h) | xargs)
vulkan_version="$major.$minor.$patch"
else
cd mesa
if [ $1 == "patched" ]; then
for patch in ${patches[@]}; do
echo "Applying patch $patch"
patch_source="$(echo $patch | cut -d ";" -f 2 | xargs)"
if [[ $patch_source == *"../.."* ]]; then
git apply "$patch_source"
sleep 1
else
patch_file="${patch_source#*\/}"
patch_args=$(echo $patch | cut -d ";" -f 3 | xargs)
curl --output "$patch_file".patch -k --retry-delay 30 --retry 5 -f --retry-all-errors https://gitlab.freedesktop.org/mesa/mesa/-/"$patch_source".patch
sleep 1
git apply $patch_args "$patch_file".patch
fi
done
fi
fi
}
build_lib_for_android(){
echo "Creating meson cross file ..." $'\n'
if [ -z "${ANDROID_NDK_LATEST_HOME}" ]; then
ndk="$workdir/$ndkver/toolchains/llvm/prebuilt/linux-x86_64/bin"
else
ndk="$ANDROID_NDK_LATEST_HOME/toolchains/llvm/prebuilt/linux-x86_64/bin"
fi
cat <<EOF >"android-aarch64"
[binaries]
ar = '$ndk/llvm-ar'
c = ['ccache', '$ndk/aarch64-linux-android$sdkver-clang']
cpp = ['ccache', '$ndk/aarch64-linux-android$sdkver-clang++', '-fno-exceptions', '-fno-unwind-tables', '-fno-asynchronous-unwind-tables', '-static-libstdc++']
c_ld = 'lld'
cpp_ld = 'lld'
strip = '$ndk/aarch64-linux-android-strip'
pkgconfig = ['env', 'PKG_CONFIG_LIBDIR=NDKDIR/pkgconfig', '/usr/bin/pkg-config']
[host_machine]
system = 'android'
cpu_family = 'aarch64'
cpu = 'armv8'
endian = 'little'
EOF
echo "Generating build files ..." $'\n'
meson build-android-aarch64 --cross-file "$workdir"/mesa/android-aarch64 -Dbuildtype=release -Dplatforms=android -Dplatform-sdk-version=$sdkver -Dandroid-stub=true -Dgallium-drivers= -Dvulkan-drivers=freedreno -Dvulkan-beta=true -Dfreedreno-kmds=kgsl -Db_lto=true &> "$workdir"/meson_log
echo "Compiling build files ..." $'\n'
ninja -C build-android-aarch64 &> "$workdir"/ninja_log
}
port_lib_for_adrenotool(){
echo "Using patchelf to match soname ..." $'\n'
cp "$workdir"/mesa/build-android-aarch64/src/freedreno/vulkan/libvulkan_freedreno.so "$workdir"
cd "$workdir"
patchelf --set-soname vulkan.adreno.so libvulkan_freedreno.so
mv libvulkan_freedreno.so vulkan.ad07XX.so
if ! [ -a vulkan.ad07XX.so ]; then
echo -e "$red Build failed! $nocolor" && exit 1
fi
mkdir -p "$packagedir" && cd "$_"
date=$(date +'%b %d, %Y')
suffix=""
if [ ! -z "$1" ]; then
suffix="_$1"
fi
cat <<EOF >"meta.json"
{
"schemaVersion": 1,
"name": "Turnip - $date - $commit_short$suffix",
"description": "Compiled from Mesa, Commit $commit_short$suffix",
"author": "mesa",
"packageVersion": "1",
"vendor": "Mesa",
"driverVersion": "$mesa_version/vk$vulkan_version",
"minApi": 27,
"libraryName": "vulkan.ad07XX.so"
}
EOF
filename=turnip_"$(date +'%b-%d-%Y')"_"$commit_short"
echo "Copy necessary files from work directory ..." $'\n'
cp "$workdir"/vulkan.ad07XX.so "$packagedir"
echo "Packing files in to adrenotool package ..." $'\n'
zip -9 "$workdir"/"$filename$suffix".zip ./*
cd "$workdir"
if [ -z "$1" ]; then
echo "Turnip - $mesa_version - $date" > release
echo "$mesa_version"_"$commit_short" > tag
echo $filename > filename
echo "### Base commit : [$commit_short](https://gitlab.freedesktop.org/mesa/mesa/-/commit/$commit_short)" > description
echo "false" > patched
else
if [ $1 == "patched" ]; then
echo "## Upstreams / Patches" >> description
echo "These have not been merged by Mesa officially yet and may introduce bugs or" >> description
echo "we revert stuff that breaks games but still got merged in (see --reverse)" >> description
for patch in ${patches[@]}; do
patch_name="$(echo $patch | cut -d ";" -f 1 | xargs)"
patch_source="$(echo $patch | cut -d ";" -f 2 | xargs)"
patch_args="$(echo $patch | cut -d ";" -f 3 | xargs)"
if [[ $patch_source == *"../.."* ]]; then
echo "- $patch_name, $patch_source, $patch_args" >> description
else
echo "- $patch_name, [$patch_source](https://gitlab.freedesktop.org/mesa/mesa/-/$patch_source), $patch_args" >> description
fi
done
echo "true" > patched
echo "" >> description
echo "_Upstreams / Patches are only applied to the patched version (\_patched.zip)_" >> description
echo "_If a patch is not present anymore, it's most likely because it got merged, is not needed anymore or was breaking something._" >> description
fi
fi
if ! [ -a "$workdir"/"$filename".zip ];
then echo -e "$red-Packing failed!$nocolor" && exit 1
else echo -e "$green-All done, you can take your zip from this folder;$nocolor" && echo "$workdir"/
fi
}
run_all