mirror of
https://github.com/infiniteCable2/panda.git
synced 2026-02-20 18:23:52 +08:00
12 lines
188 B
Python
12 lines
188 B
Python
env = Environment(
|
|
CC='gcc',
|
|
CFLAGS=[
|
|
'-nostdlib',
|
|
'-fno-builtin',
|
|
'-std=gnu11',
|
|
],
|
|
CPPPATH=[".", "../../board"],
|
|
)
|
|
|
|
env.SharedLibrary("libpandasafety.so", ["test.c"])
|