mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-07-24 05:32:10 +08:00
13aee3754b
date: 2026-07-20T11:52:50
master commit: bae7e49626
16 lines
329 B
Python
16 lines
329 B
Python
import opendbc
|
|
|
|
env = Environment(
|
|
CFLAGS=[
|
|
'-nostdlib',
|
|
'-fno-builtin',
|
|
'-std=gnu11',
|
|
'-Wfatal-errors',
|
|
'-Wno-pointer-to-int-cast',
|
|
],
|
|
CPPPATH=[".", "../../", "../../board/", opendbc.INCLUDE_PATH],
|
|
)
|
|
|
|
panda = env.SharedObject("panda.os", "panda.c")
|
|
libpanda = env.SharedLibrary("libpanda.so", [panda])
|