mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-20 03:44:11 +08:00
* Systemd logcatd infrastructure
* This should work
* Cleanup
* Split
* More compact and cleanup
* Add to ubuntu setup package list
* Run logcatd on all non pc platforms
old-commit-hash: 5782efe3ae
7 lines
303 B
Python
7 lines
303 B
Python
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'])
|