Build log_index using scons

pull/1445/head
Willem Melching 5 years ago
parent 079c9e714b
commit 845abed5db
  1. 2
      SConstruct
  2. 3
      tools/lib/index_log/SConscript
  3. 3
      tools/lib/logreader.py

@ -249,5 +249,7 @@ if arch == "aarch64":
SConscript(['selfdrive/locationd/SConscript'])
SConscript(['selfdrive/locationd/kalman/SConscript'])
SConscript(['tools/lib/index_log/SConscript'])
# TODO: finish cereal, dbcbuilder, MPC

@ -0,0 +1,3 @@
Import('env', 'arch', 'messaging')
env.Program('index_log', ['index_log.cc'], LIBS=[messaging, 'kj', 'capnp'])

@ -23,8 +23,9 @@ OP_PATH = os.path.dirname(os.path.dirname(capnp_log.__file__))
def index_log(fn):
index_log_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)), "index_log")
index_log = os.path.join(index_log_dir, "index_log")
phonelibs_dir = os.path.join(OP_PATH, 'phonelibs')
if not os.path.exists(index_log):
phonelibs_dir = os.path.join(OP_PATH, 'phonelibs')
subprocess.check_call(["make", "PHONELIBS=" + phonelibs_dir], cwd=index_log_dir, stdout=subprocess.DEVNULL)
try:

Loading…
Cancel
Save