remove nav sconscript hack (#21768)

* remove nav sconscript hack

* pc files
old-commit-hash: 7a5f30f16bb25d8e297a38c8489d76909d53a115
This commit is contained in:
Adeeb Shihadeh
2021-07-28 17:44:01 -07:00
committed by GitHub
parent bbd63268df
commit 28ddda3011
3 changed files with 7 additions and 3 deletions
+2 -3
View File
@@ -5,13 +5,12 @@ Import('qt_env', 'arch', 'common', 'messaging', 'gpucommon', 'visionipc',
base_libs = [gpucommon, common, messaging, cereal, visionipc, transformations, 'zmq',
'capnp', 'kj', 'm', 'OpenCL', 'ssl', 'crypto', 'pthread'] + qt_env["LIBS"]
maps = arch in ['larch64', 'x86_64'] and \
os.path.exists(File("qt/maps/map.cc").srcnode().abspath)
maps = arch in ['larch64', 'x86_64']
if arch == 'aarch64':
base_libs += ['log', 'utils', 'gui', 'ui', 'CB', 'gsl', 'adreno_utils', 'cutils', 'uuid']
if maps and arch in ['x86_64']:
if maps and arch == 'x86_64':
rpath = [Dir(f"#phonelibs/mapbox-gl-native-qt/{arch}").srcnode().abspath]
qt_env["RPATH"] += rpath