Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Makefile: Add -Wextra -Wno-override-init -Werror
Enable -Wextra. Exclude -Wno-override-init for now, because bee_getopt.h
relies on it. See [1] for similar issue in mxq.

[1]: mariux64/mxq#131
  • Loading branch information
donald committed Jul 8, 2022
1 parent db33ece commit 98f8ffa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
@@ -1,7 +1,8 @@
BEE_VERSION = 1.2.24

CC=gcc
CFLAGS=-Wall -g -O3
CFLAGS=-Wall -Wextra -Wno-override-init -Werror -g -O3

LDFLAGS=

PREFIX = /usr
Expand Down

0 comments on commit 98f8ffa

Please sign in to comment.