aarch64: ubuntu build support (#29171)

* Add support for aarch64 pc linux

* Add new libyuv path to release files

* Add libyuv's x86_64 lib dir

* Move left-over platform specific dirs from files_common

* Remove libyuv/lib directory (duplicate)

* Fix mpc Sconscripts

* Remove acados lib path from mpc sources

* Fix typo

* Add watch3 exec on aarch64
old-commit-hash: c640429406c8925b3cce9d979cee880a90fd79c3
This commit is contained in:
Kacper Rączy
2023-08-02 01:18:46 +02:00
committed by GitHub
parent 2c5cbd6fc0
commit edc31db6df
15 changed files with 34 additions and 30 deletions
+3 -3
View File
@@ -9,9 +9,9 @@ base_libs = [common, messaging, cereal, visionipc, transformations, 'zmq',
if arch == 'larch64':
base_libs.append('EGL')
maps = arch in ['larch64', 'x86_64']
maps = arch in ['larch64', 'aarch64', 'x86_64']
if maps and arch == 'x86_64':
if maps and arch != 'larch64':
rpath = [Dir(f"#third_party/mapbox-gl-native-qt/{arch}").srcnode().abspath]
qt_env["RPATH"] += rpath
@@ -131,5 +131,5 @@ if GetOption('extras'):
assert f[0].get_size() < 300*1e3
# build watch3
if arch in ['x86_64', 'Darwin'] or GetOption('extras'):
if arch in ['x86_64', 'aarch64', 'Darwin'] or GetOption('extras'):
qt_env.Program("watch3", ["watch3.cc"], LIBS=qt_libs + ['common', 'json11', 'zmq', 'visionipc', 'messaging'])