Files
panda-meb/tests/libpanda/SConscript
Adeeb Shihadeh 88b30e1a84 CAN comms test (#1181)
* CAN comms test

* remove those

* cleanup

* little more
2022-11-30 22:12:28 -08:00

13 lines
202 B
Python

env = Environment(
CC='gcc',
CFLAGS=[
'-nostdlib',
'-fno-builtin',
'-std=gnu11',
'-Wfatal-errors',
],
CPPPATH=[".", "#board/"],
)
env.SharedLibrary("libpanda.so", ["panda.c",])