Files
dragonpilot/panda/SConstruct
T
Vehicle Researcher 3a9999ce05 openpilot v0.10.0 release
date: 2025-08-19T09:22:22
master commit: 1508b2a6e31204c2fb41dd023412c90808236940
2025-08-19 09:22:24 -07:00

20 lines
443 B
Python

AddOption('--minimal',
action='store_false',
dest='extras',
default=True,
help='the minimum build. no tests, tools, etc.')
AddOption('--ubsan',
action='store_true',
help='turn on UBSan')
env = Environment(
COMPILATIONDB_USE_ABSPATH=True,
tools=["default", "compilation_db"],
)
env.CompilationDatabase("compile_commands.json")
# panda fw & test files
SConscript('SConscript')