forked from ilhan-athn7/freedreno_turnip-CI
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathturnip_builder.sh
275 lines (236 loc) · 8.18 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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
#!/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-r27"
sdkver="33"
mesasrc="https://gitlab.freedesktop.org/mesa/mesa.git"
#array of string => commit/branch;patch args
base_patches=(
'disable_VK_KHR_workgroup_memory_explicit_layout;../../patches/disable_KHR_workgroup_memory_explicit_layout.patch;'
)
experimental_patches=(
"force_sysmem_no_autotuner;../../patches/force_sysmem_no_autotuner.patch;"
)
failed_patches=()
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
prep
if (( ${#base_patches[@]} )); then
prep "patched"
fi
if (( ${#experimental_patches[@]} )); then
prep "experimental"
fi
}
prep () {
prepare_workdir "$1"
build_lib_for_android
port_lib_for_adrenotool "$1"
}
check_deps(){
sudo apt remove meson
pip install meson PyYAML
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
echo "Installing python Mako dependency (if missing) ..." $'\n'
pip install mako &> /dev/null
}
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"
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
apply_patches ${base_patches[@]}
else
apply_patches ${experimental_patches[@]}
fi
fi
}
apply_patches() {
local arr=("$@")
for patch in "${arr[@]}"; do
echo "Applying patch $patch"
patch_source="$(echo $patch | cut -d ";" -f 2 | xargs)"
patch_args=$(echo $patch | cut -d ";" -f 3 | xargs)
if [[ $patch_source == *"../.."* ]]; then
if git apply $patch_args "$patch_source"; then
echo "Patch applied successfully"
else
echo "Failed to apply $patch"
failed_patches+=("$patch")
fi
else
patch_file="${patch_source#*\/}"
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
if git apply $patch_args "../$patch_file".patch ; then
echo "Patch applied successfully"
else
echo "Failed to apply $patch"
failed_patches+=("$patch")
fi
fi
done
}
patch_to_description() {
local arr=("$@")
for patch in "${arr[@]}"; 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
}
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
echo "false" > experimental
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
patch_to_description ${base_patches[@]}
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
else
echo "### Upstreams / Patches (Experimental)" >> description
echo "Include previously listed patches + experimental ones" >> description
patch_to_description ${experimental_patches[@]}
echo "true" > experimental
echo "" >> description
echo "_Experimental patches are only applied to the experimental version (\_experimental.zip)_" >> description
fi
fi
if (( ${#failed_patches[@]} )); then
echo "" >> description
echo "#### Patches that failed to apply" >> description
patch_to_description ${failed_patches[@]}
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