3
3
4
4
# Default value for arguments
5
5
appimage_build=0
6
+ cc_install_root=" /mnt/cross"
7
+ cc_target_tuple=" $( uname -m) -linux-gnu"
8
+ cc_target_arch=" $( dpkg --print-architecture || rpm --eval ' %{_host}' ) "
9
+ cross_compile=0
6
10
num_processors=$( nproc)
7
11
publisher_name=" Third Party Publisher"
8
12
publisher_website=" "
@@ -28,6 +32,10 @@ Options:
28
32
-h, --help Display this help message.
29
33
-s, --sudo-off Disable sudo command.
30
34
--appimage-build Compile for AppImage, this will not create the AppImage, just the executable.
35
+ --cc-install-root The root directory to install the cross compiler. Default is /mnt/cross. (Fedora only)
36
+ --cc-target-tuple The target tuple for the cross compiler.
37
+ --cc-target-arch The target architecture for the cross compiler.
38
+ --cross-compile Enable cross compilation.
31
39
--num-processors The number of processors to use for compilation. Default is the value of 'nproc'.
32
40
--publisher-name The name of the publisher (not developer) of the application.
33
41
--publisher-website The URL of the publisher's website.
@@ -55,6 +63,16 @@ while getopts ":hs-:" opt; do
55
63
appimage_build=1
56
64
skip_libva=1
57
65
;;
66
+ cc-install-root=* )
67
+ cc_install_root=" ${OPTARG#* =} "
68
+ ;;
69
+ cc-target-tuple=* )
70
+ cc_target_tuple=" ${OPTARG#* =} "
71
+ ;;
72
+ cc-target-arch=* )
73
+ cc_target_arch=" ${OPTARG#* =} "
74
+ ;;
75
+ cross-compile) cross_compile=1 ;;
58
76
num-processors=* )
59
77
num_processors=" ${OPTARG#* =} "
60
78
;;
@@ -97,28 +115,28 @@ function add_debain_based_deps() {
97
115
" cmake"
98
116
" doxygen"
99
117
" flex" # required if we need to compile doxygen
100
- " gcc-${gcc_version} "
101
- " g++-${gcc_version} "
118
+ " gcc-${gcc_version} : ${cc_target_arch} "
119
+ " g++-${gcc_version} : ${cc_target_arch} "
102
120
" git"
103
121
" graphviz"
104
- " libcap-dev" # KMS
105
- " libcurl4-openssl-dev"
106
- " libdrm-dev" # KMS
107
- " libevdev-dev"
108
- " libminiupnpc-dev"
109
- " libnotify-dev"
110
- " libnuma-dev"
111
- " libopus-dev"
112
- " libpulse-dev"
113
- " libssl-dev"
114
- " libwayland-dev" # Wayland
115
- " libx11-dev" # X11
116
- " libxcb-shm0-dev" # X11
117
- " libxcb-xfixes0-dev" # X11
118
- " libxcb1-dev" # X11
119
- " libxfixes-dev" # X11
120
- " libxrandr-dev" # X11
121
- " libxtst-dev" # X11
122
+ " libcap-dev: ${cc_target_arch} " # KMS
123
+ " libcurl4-openssl-dev: ${cc_target_arch} "
124
+ " libdrm-dev: ${cc_target_arch} " # KMS
125
+ " libevdev-dev: ${cc_target_arch} "
126
+ " libminiupnpc-dev: ${cc_target_arch} "
127
+ " libnotify-dev: ${cc_target_arch} "
128
+ " libnuma-dev: ${cc_target_arch} "
129
+ " libopus-dev: ${cc_target_arch} "
130
+ " libpulse-dev: ${cc_target_arch} "
131
+ " libssl-dev: ${cc_target_arch} "
132
+ " libwayland-dev: ${cc_target_arch} " # Wayland
133
+ " libx11-dev: ${cc_target_arch} " # X11
134
+ " libxcb-shm0-dev: ${cc_target_arch} " # X11
135
+ " libxcb-xfixes0-dev: ${cc_target_arch} " # X11
136
+ " libxcb1-dev: ${cc_target_arch} " # X11
137
+ " libxfixes-dev: ${cc_target_arch} " # X11
138
+ " libxrandr-dev: ${cc_target_arch} " # X11
139
+ " libxtst-dev: ${cc_target_arch} " # X11
122
140
" ninja-build"
123
141
" npm" # web-ui
124
142
" udev"
@@ -128,15 +146,21 @@ function add_debain_based_deps() {
128
146
129
147
if [ " $skip_libva " == 0 ]; then
130
148
dependencies+=(
131
- " libva-dev" # VA-API
149
+ " libva-dev:${cc_target_arch} " # VA-API
150
+ )
151
+ fi
152
+
153
+ if [ " $cross_compile " == 1 ]; then
154
+ dependencies+=(
155
+ " crossbuild-essential-${cc_target_arch} "
132
156
)
133
157
fi
134
158
}
135
159
136
160
function add_debain_deps() {
137
161
add_debain_based_deps
138
162
dependencies+=(
139
- " libayatana-appindicator3-dev"
163
+ " libayatana-appindicator3-dev: ${cc_target_arch} "
140
164
)
141
165
}
142
166
@@ -148,18 +172,27 @@ function add_ubuntu_deps() {
148
172
149
173
add_debain_based_deps
150
174
dependencies+=(
151
- " libappindicator3-dev"
175
+ " libappindicator3-dev: ${cc_target_arch} "
152
176
)
153
177
}
154
178
155
179
function add_fedora_deps() {
156
180
dependencies+=(
157
181
" cmake"
158
182
" doxygen"
159
- " gcc"
160
- " g++"
161
183
" git"
162
184
" graphviz"
185
+ " ninja-build"
186
+ " npm"
187
+ " rpm-build" # if you want to build an RPM binary package
188
+ " wget" # necessary for cuda install with `run` file
189
+ " which" # necessary for cuda install with `run` file
190
+ " xorg-x11-server-Xvfb" # necessary for headless unit testing
191
+ )
192
+
193
+ arch_dependencies=(
194
+ " gcc"
195
+ " g++"
163
196
" libappindicator-gtk3-devel"
164
197
" libcap-devel"
165
198
" libcurl-devel"
@@ -176,20 +209,14 @@ function add_fedora_deps() {
176
209
" libXtst-devel" # X11
177
210
" mesa-libGL-devel"
178
211
" miniupnpc-devel"
179
- " ninja-build"
180
- " npm"
181
212
" numactl-devel"
182
213
" openssl-devel"
183
214
" opus-devel"
184
215
" pulseaudio-libs-devel"
185
- " rpm-build" # if you want to build an RPM binary package
186
- " wget" # necessary for cuda install with `run` file
187
- " which" # necessary for cuda install with `run` file
188
- " xorg-x11-server-Xvfb" # necessary for headless unit testing
189
216
)
190
217
191
218
if [ " $skip_libva " == 0 ]; then
192
- dependencies +=(
219
+ arch_dependencies +=(
193
220
" libva-devel" # VA-API
194
221
)
195
222
fi
@@ -204,15 +231,15 @@ function install_cuda() {
204
231
205
232
local cuda_prefix=" https://developer.download.nvidia.com/compute/cuda/"
206
233
local cuda_suffix=" "
207
- if [ " $architecture " == " aarch64" ]; then
234
+ if [ " $cc_target_arch " == " aarch64" ]; then
208
235
local cuda_suffix=" _sbsa"
209
236
fi
210
237
211
- if [ " $architecture " == " aarch64" ]; then
238
+ if [ " $cc_target_arch " == " aarch64" ]; then
212
239
# we need to patch the math-vector.h file for aarch64 fedora
213
240
# back up /usr/include/bits/math-vector.h
214
241
math_vector_file=" "
215
- if [ " $distro " == " ubuntu" ] || [ " $version " == " 24.04" ]; then
242
+ if [ " $distro " == " ubuntu" ] && [ " $version " == " 24.04" ]; then
216
243
math_vector_file=" /usr/include/aarch64-linux-gnu/bits/math-vector.h"
217
244
elif [ " $distro " == " fedora" ]; then
218
245
math_vector_file=" /usr/include/bits/math-vector.h"
@@ -313,6 +340,11 @@ function run_install() {
313
340
# Install the dependencies
314
341
$package_install_command " ${dependencies[@]} "
315
342
343
+ # Fedora has a special command for installing architecture specific packages
344
+ if [ " $distro " == " fedora" ]; then
345
+ $package_install_command_arch " ${arch_dependencies[@]} "
346
+ fi
347
+
316
348
# reload the environment
317
349
# shellcheck source=/dev/null
318
350
source ~ /.bashrc
@@ -448,6 +480,11 @@ elif grep -q "PLATFORM_ID=\"platform:f39\"" /etc/os-release; then
448
480
version=" 39"
449
481
package_update_command=" ${sudo_cmd} dnf update -y"
450
482
package_install_command=" ${sudo_cmd} dnf install -y"
483
+ if [ " $cross_compile " == 0 ]; then
484
+ package_install_command_arch=" ${sudo_cmd} dnf -y --releasever=39 --forcearch=${cc_target_arch} install"
485
+ else
486
+ package_install_command_arch=" ${sudo_cmd} dnf -y --installroot=${cc_install_root} --releasever=39 --forcearch=${cc_target_arch} install"
487
+ fi
451
488
cuda_version=" 12.4.0"
452
489
cuda_build=" 550.54.14"
453
490
gcc_version=" 13"
@@ -457,6 +494,11 @@ elif grep -q "PLATFORM_ID=\"platform:f40\"" /etc/os-release; then
457
494
version=" 40"
458
495
package_update_command=" ${sudo_cmd} dnf update -y"
459
496
package_install_command=" ${sudo_cmd} dnf install -y"
497
+ if [ " $cross_compile " == 0 ]; then
498
+ package_install_command_arch=" ${sudo_cmd} dnf -y --releasever=39 --forcearch=${cc_target_arch} install"
499
+ else
500
+ package_install_command_arch=" ${sudo_cmd} dnf -y --installroot=${cc_install_root} --releasever=39 --forcearch=${cc_target_arch} install"
501
+ fi
460
502
cuda_version=
461
503
cuda_build=
462
504
gcc_version=" 13"
0 commit comments