mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
interpreters/python: Disable no-maybe-uninitialized warning
This commit disables the `no-maybe-uninitialized` warning because it's wrongly evaluated after increasing the optimization level of the Python's library. Signed-off-by: Tiago Medicci <tiago.medicci@espressif.com>
This commit is contained in:
parent
59d3a0d0ae
commit
8e00b4d672
1 changed files with 1 additions and 1 deletions
|
|
@ -56,7 +56,7 @@ CFLAGS += -Wno-shadow -Wno-undef -Wno-format -Wno-builtin-macro-redefined
|
|||
CFLAGS += -Wno-type-limits -Wno-implicit-fallthrough -Wno-char-subscripts
|
||||
CFLAGS += -Wno-sign-compare -Wno-unused-const-variable -Wno-unused-function
|
||||
CFLAGS += -Wno-unused-variable -Wno-overflow -Wno-unused-but-set-variable
|
||||
CFLAGS += -Wno-strict-prototypes -nostdlib
|
||||
CFLAGS += -Wno-strict-prototypes -Wno-maybe-uninitialized -nostdlib
|
||||
|
||||
DEPPATH += --dep-path $(CPYTHON_UNPACKNAME)$(DELIM)Programs
|
||||
VPATH += :$(CPYTHON_UNPACKNAME)$(DELIM)Programs
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue