From 06a0b92cfc955cf495584126acc260dae27c4b6f Mon Sep 17 00:00:00 2001 From: Willem Melching Date: Thu, 14 May 2020 10:53:19 -0700 Subject: [PATCH] dont build index log on phone --- SConstruct | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/SConstruct b/SConstruct index bd5b55e2..25588dce 100644 --- a/SConstruct +++ b/SConstruct @@ -226,11 +226,13 @@ SConscript(['selfdrive/proclogd/SConscript']) SConscript(['selfdrive/ui/SConscript']) SConscript(['selfdrive/loggerd/SConscript']) +SConscript(['selfdrive/locationd/SConscript']) +SConscript(['selfdrive/locationd/kalman/SConscript']) + if arch == "aarch64": SConscript(['selfdrive/logcatd/SConscript']) SConscript(['selfdrive/sensord/SConscript']) SConscript(['selfdrive/clocksd/SConscript']) +else: + SConscript(['tools/lib/index_log/SConscript']) -SConscript(['selfdrive/locationd/SConscript']) -SConscript(['selfdrive/locationd/kalman/SConscript']) -SConscript(['tools/lib/index_log/SConscript'])