mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-09-04 23:13:45 +08:00
c49df9dc57
date: 2026-08-29T14:21:18
master commit: 1dd5a7c91d
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])
|