diff options
author | Emil Renner Berthing <esmil@mailme.dk> | 2020-10-03 11:29:16 +0200 |
---|---|---|
committer | Emil Renner Berthing <esmil@mailme.dk> | 2020-10-22 11:54:11 +0200 |
commit | bef412789ea93c521bd9c2dddc22b9b3484da574 (patch) | |
tree | da7c9dc2cf1e4263bbb72fdafe5b3d60702f971e | |
parent | ccd92335a11f03597f94da2ac937811ff3fa50cf (diff) |
mpy-cross: Enable more warnings.
-rw-r--r-- | mpy-cross/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mpy-cross/Makefile b/mpy-cross/Makefile index f80ee761b..971f2f81a 100644 --- a/mpy-cross/Makefile +++ b/mpy-cross/Makefile @@ -18,7 +18,7 @@ INC += -I$(TOP) # compiler settings CWARN = -Wall -Werror -CWARN += -Wpointer-arith -Wuninitialized +CWARN += -Wextra -Wno-unused-parameter -Wpointer-arith CFLAGS = $(INC) $(CWARN) -std=gnu99 $(CFLAGS_MOD) $(COPT) $(CFLAGS_EXTRA) CFLAGS += -fdata-sections -ffunction-sections -fno-asynchronous-unwind-tables |