openpilot v0.7.9 release

This commit is contained in:
Vehicle Researcher
2020-10-02 01:45:44 +00:00
parent 0aa4867be4
commit 49d82d6ac1
268 changed files with 5985 additions and 5105 deletions
+6 -2
View File
@@ -1,2 +1,6 @@
Import('env', 'cereal', 'messaging')
env.Program('logcatd.cc', LIBS=[cereal, messaging, 'cutils', 'zmq', 'czmq', 'capnp', 'kj'])
Import('env', 'cereal', 'messaging', 'arch')
if arch == "aarch64":
env.Program('logcatd', 'logcatd_android.cc', LIBS=[cereal, messaging, 'cutils', 'zmq', 'czmq', 'capnp', 'kj'])
else:
env.Program('logcatd', 'logcatd_systemd.cc', LIBS=[cereal, messaging, 'zmq', 'capnp', 'kj', 'systemd', 'json11'])