diff options
author | Emil Renner Berthing <esmil@mailme.dk> | 2020-10-03 11:31:13 +0200 |
---|---|---|
committer | Emil Renner Berthing <esmil@mailme.dk> | 2020-10-22 11:54:11 +0200 |
commit | 05f95682e7ddfb08c317e83826df9a1d636676f3 (patch) | |
tree | 8832bde3df029c72b94c347d0af1a09df861b3a6 | |
parent | bef412789ea93c521bd9c2dddc22b9b3484da574 (diff) |
unix: Enable more warnings.
-rw-r--r-- | ports/unix/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/unix/Makefile b/ports/unix/Makefile index ff5f35502..7380e5e41 100644 --- a/ports/unix/Makefile +++ b/ports/unix/Makefile @@ -39,7 +39,7 @@ INC += -I$(BUILD) # compiler settings CWARN = -Wall -Werror -CWARN += -Wpointer-arith -Wuninitialized -Wdouble-promotion -Wsign-compare -Wfloat-conversion +CWARN += -Wextra -Wno-unused-parameter -Wpointer-arith -Wdouble-promotion -Wfloat-conversion CFLAGS += $(INC) $(CWARN) -std=gnu99 -DUNIX $(CFLAGS_MOD) $(COPT) -I$(VARIANT_DIR) $(CFLAGS_EXTRA) # Debugging/Optimization |