diff options
| author | hathach <[email protected]> | 2022-06-28 13:34:47 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2022-06-28 13:34:47 +0700 |
| commit | 83602ea1234e992dd90d6b3c9b1f0fd8b2bf5a78 (patch) | |
| tree | e45dfa4187b262508636c64f882e23987b1c3c48 /examples/make.mk | |
| parent | 4057c2d8d96a364329d14d3a4b2c237f388cfdc2 (diff) | |
| parent | 3ead682af05bee3a275125f3e0384dd9b2882546 (diff) | |
Merge branch 'master' into rp2040_warning
Diffstat (limited to 'examples/make.mk')
| -rw-r--r-- | examples/make.mk | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/examples/make.mk b/examples/make.mk index bed46d02b..27e1db38c 100644 --- a/examples/make.mk +++ b/examples/make.mk @@ -90,13 +90,13 @@ CFLAGS += \ -ffunction-sections \ -fsingle-precision-constant \ -fno-strict-aliasing \ - -Wdouble-promotion \ - -Wstrict-prototypes \ - -Wstrict-overflow \ -Wall \ -Wextra \ -Werror \ -Wfatal-errors \ + -Wdouble-promotion \ + -Wstrict-prototypes \ + -Wstrict-overflow \ -Werror-implicit-function-declaration \ -Wfloat-equal \ -Wundef \ @@ -108,8 +108,14 @@ CFLAGS += \ -Wcast-align \ -Wcast-function-type \ -Wcast-qual \ - -Wnull-dereference + -Wnull-dereference \ + -Wuninitialized \ + -Wunused \ + -Wredundant-decls +# conversion is too strict for most mcu driver, may be disable sign/int/arith-conversion +# -Wconversion + # Debugging/Optimization ifeq ($(DEBUG), 1) CFLAGS += -Og |
