mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-09-02 10:33:43 +08:00
17ba3c95bd
date: 2026-09-01T14:06:42
master commit: 51987a62d0
14 lines
266 B
Python
14 lines
266 B
Python
import os
|
|
|
|
env = Environment(
|
|
COMPILATIONDB_USE_ABSPATH=True,
|
|
tools=["default", "compilation_db"],
|
|
)
|
|
|
|
SetOption('num_jobs', max(1, int((os.cpu_count() or 1)-1)))
|
|
|
|
env.CompilationDatabase("compile_commands.json")
|
|
|
|
# panda fw & test files
|
|
SConscript('SConscript')
|