mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-09-03 06:03:42 +08:00
08e4e3b2d2
date: 2026-09-02T13:32:21
master commit: 47db84ebfb
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')
|