mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-14 00:37:21 +00:00
1a8f6dbed8
* libs: removed cxxheaderparser submodule, expecting one from toolchain * toolchain: v38 * vscode: now using clangd from toolchain * vscode: clangd path in config is now generated by fbt * vscode, fbt: improved clangd path generation * fbt: fixed LANG_SERVER handling; switched to clangd as default * vscode: removed deprecated options from config * ufbt: project template: updated clang-format, added clangd config * ufbt: now using clangd as default language server * ufbt: now using clangd as default language server
40 lines
1.2 KiB
Python
40 lines
1.2 KiB
Python
from SCons.Script import GetBuildFailures
|
|
|
|
import sys
|
|
import os
|
|
import atexit
|
|
from ansi.color import fg, fx
|
|
|
|
sys.path.insert(0, os.path.join(os.getcwd(), "scripts"))
|
|
|
|
|
|
def bf_to_str(bf):
|
|
"""Convert an element of GetBuildFailures() to a string
|
|
in a useful way."""
|
|
import SCons.Errors
|
|
|
|
if bf is None: # unknown targets product None in list
|
|
return "(unknown tgt)"
|
|
elif isinstance(bf, SCons.Errors.StopError):
|
|
return fg.yellow(str(bf))
|
|
elif bf.node:
|
|
return fg.yellow(str(bf.node)) + ": " + bf.errstr
|
|
elif bf.filename:
|
|
return fg.yellow(bf.filename) + ": " + bf.errstr
|
|
return fg.yellow("unknown failure: ") + bf.errstr
|
|
|
|
|
|
def display_build_status():
|
|
"""Display the build status. Called by atexit.
|
|
Here you could do all kinds of complicated things."""
|
|
bf = GetBuildFailures()
|
|
if bf:
|
|
# bf is normally a list of build failures; if an element is None,
|
|
# it's because of a target that scons doesn't know anything about.
|
|
failures_message = "\n".join([bf_to_str(x) for x in bf if x is not None])
|
|
print()
|
|
print(fg.brightred(fx.bold("*" * 10 + " FBT ERRORS " + "*" * 10)))
|
|
print(failures_message)
|
|
|
|
|
|
atexit.register(display_build_status)
|