* remove czmq * remove streaming mode from loggerd * Add include for usleep old-commit-hash: a4ccfcffe8247bf467bddfb0e6c5b3eb8851e21a
7 lines
295 B
Python
7 lines
295 B
Python
Import('env', 'cereal', 'messaging', 'arch')
|
|
|
|
if arch == "aarch64":
|
|
env.Program('logcatd', 'logcatd_android.cc', LIBS=[cereal, messaging, 'cutils', 'zmq', 'capnp', 'kj'])
|
|
else:
|
|
env.Program('logcatd', 'logcatd_systemd.cc', LIBS=[cereal, messaging, 'zmq', 'capnp', 'kj', 'systemd', 'json11'])
|