mirror of
https://github.com/infiniteCable2/panda.git
synced 2026-02-19 01:33:52 +08:00
13 lines
202 B
Python
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",])
|