commit b6d8c2e2b126b0705f22be27c3f376271fd62840 parent abb7c50bdce9eba7d7604af1f5a0d845885a12d0 Author: William Casarin <jb55@jb55.com> Date: Thu, 5 Aug 2021 07:11:47 -0700 move unused function flag needed for clang Signed-off-by: William Casarin <jb55@jb55.com> Diffstat:
M | Makefile | | | 5 | +++-- |
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile @@ -1,7 +1,8 @@ -CFLAGS = -Wno-error=unused-function -O2 -g -std=gnu90 -Wall -Wextra -Werror \ +CFLAGS = -O2 -g -std=gnu90 -Wall -Wextra -Werror \ -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes \ - -Wmissing-declarations -Wdeclaration-after-statement -fno-stack-protector + -Wmissing-declarations -Wdeclaration-after-statement -fno-stack-protector \ + -Wno-unused-function LDFLAGS = -lm