remove dead mull stuff (#2208)

* remove dead mull stuff

* rm clang

* fix
This commit is contained in:
Adeeb Shihadeh
2025-05-19 19:40:50 -07:00
committed by GitHub
parent d7e5f8560f
commit 92c26f71e6
4 changed files with 5 additions and 43 deletions

View File

@@ -8,25 +8,17 @@ AddOption('--ubsan',
action='store_true',
help='turn on UBSan')
AddOption('--coverage',
action='store_true',
help='build with test coverage options')
AddOption('--compile_db',
action='store_true',
help='build clang compilation database')
AddOption('--mutation',
action='store_true',
help='generate mutation-ready code')
env = Environment(
COMPILATIONDB_USE_ABSPATH=True,
tools=["default", "compilation_db"],
)
if GetOption('compile_db'):
env.CompilationDatabase("compile_commands.json")
env.CompilationDatabase("compile_commands.json")
# panda fw & test files
SConscript('SConscript')