diff options
| author | Nick Brassel | 2025-06-15 03:56:10 +0200 |
|---|---|---|
| committer | GitHub | 2025-06-15 03:56:10 +0200 |
| commit | 7f9ceef3dd52066b6349130a93bfc681cd435d68 (patch) | |
| tree | 8ccd6bd67e222b2d3353dcb9ec5fb34a5d6f99cd /.clangd | |
| parent | 7ecdb574147fb67a89c46609161ca08891a103c0 (diff) | |
More compiledb fixes. (#25355)
Diffstat (limited to '.clangd')
| -rw-r--r-- | .clangd | 35 |
1 files changed, 32 insertions, 3 deletions
@@ -1,4 +1,33 @@ CompileFlags: - Add: [-Wno-unknown-attributes, -Wno-maybe-uninitialized, -Wno-unknown-warning-option] - Remove: [-W*, -mmcu=*, -mcpu=*, -mfpu=*, -mfloat-abi=*, -mno-unaligned-access, -mno-thumb-interwork, -mcall-prologues, -D__has_include*] - Compiler: clang + Add: + [ + -Wno-unknown-attributes, + -Wno-maybe-uninitialized, + -Wno-unknown-warning-option, + -Wno-pointer-to-int-cast, + -Wno-int-to-void-pointer-cast, + -DPROGMEM=, + ] + Remove: + [ + -W*, + -mmcu=*, + -mcpu=*, + -mfpu=*, + -mfloat-abi=*, + -mno-unaligned-access, + -mno-thumb-interwork, + -mcall-prologues, + -D__has_include*, + -mlra, + ] + Compiler: clang +Diagnostics: + UnusedIncludes: None + Suppress: + [ + asm_invalid_output_constraint, + asm_invalid_input_constraint, + invalid_asm_value_for_constraint, + anyx86_interrupt_attribute, + ] |