| #
fe5af822 |
| 18-Jun-2024 |
Shen Jiamin <shen_jiamin@comp.nus.edu.sg> |
scripts: fix invalid escape sequence
A backslash-character pair that is not a valid escape sequence is generating a SyntaxWarning in Python 3.12 and could generate a SyntaxError in a future version.
scripts: fix invalid escape sequence
A backslash-character pair that is not a valid escape sequence is generating a SyntaxWarning in Python 3.12 and could generate a SyntaxError in a future version.
Use a raw string to avoid the escape.
Signed-off-by: Shen Jiamin <shen_jiamin@comp.nus.edu.sg> Reviewed-by: Joakim Bech <joakim.bech@linaro.org>
show more ...
|
| #
8d541aee |
| 19-Oct-2023 |
Joakim Bech <joakim.bech@linaro.org> |
scripts: Add script to support Language Server Protocol (LSP)
The Language Server Protocol (LSP) is a standard protocol used by many text editors and integrated development environments (IDEs) to en
scripts: Add script to support Language Server Protocol (LSP)
The Language Server Protocol (LSP) is a standard protocol used by many text editors and integrated development environments (IDEs) to enable advanced language features such as code completion, hover information, and diagnostics.
This commit introduces a script that simplifies the generation of LSP configuration JSON files. These JSON files describe how source files are compiled and linked together for use with LSP-enabled tools. The script is adapted from U-Boot and customized to work with the *.cmd files used by OP-TEE, making it easier to harness the power of LSP for development and code analysis.
Signed-off-by: Joakim Bech <joakim.bech@linaro.org> Acked-by: Jens Wiklander <jens.wiklander@linaro.org>
show more ...
|