mirror of
https://github.com/infiniteCable2/panda.git
synced 2026-02-19 01:33:52 +08:00
* generic libpanda for tests * move safety helpers * fix ci build * fix running * opendbc is in the image * make can packet * rename
12 lines
188 B
Python
12 lines
188 B
Python
env = Environment(
|
|
CC='gcc',
|
|
CFLAGS=[
|
|
'-nostdlib',
|
|
'-fno-builtin',
|
|
'-std=gnu11',
|
|
],
|
|
CPPPATH=[".", "#board/"],
|
|
)
|
|
|
|
env.SharedLibrary("libpanda.so", ["safety_helpers.c"])
|