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 d09d0cd commit 105ddb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
@@ -1,7 +1,7 @@
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 105ddb4

Please sign in to comment.