From b0e1f18762ec0be5b731cf9b6d5c7dae168de1fc Mon Sep 17 00:00:00 2001 From: Robbe Derks Date: Mon, 14 Aug 2023 13:46:14 -0700 Subject: [PATCH] Build tools on aarch64 (#29393) old-commit-hash: 5fd6589779b0bebec2028ba5a9f7d153165c3db0 --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 6e7b2b4213..6e4f301cbb 100644 --- a/SConstruct +++ b/SConstruct @@ -437,7 +437,7 @@ SConscript(['selfdrive/navd/SConscript']) SConscript(['selfdrive/modeld/SConscript']) SConscript(['selfdrive/ui/SConscript']) -if (arch in ['x86_64', 'Darwin'] and Dir('#tools/cabana/').exists()) or GetOption('extras'): +if (arch in ['x86_64', 'aarch64', 'Darwin'] and Dir('#tools/cabana/').exists()) or GetOption('extras'): SConscript(['tools/replay/SConscript']) SConscript(['tools/cabana/SConscript'])