mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 09:41:03 -04:00
Cleanup compiler warning flags in lib/libefivar/Makefile
There is no need to set -Wno-unused-parameter twice, and instead of
appending to CFLAGS, append to CWARNFLAGS instead. While here, add
-Wno-unused-but-set-variable for the sake of clang 13.0.0.
(cherry picked from commit f643997a17)
This commit is contained in:
parent
38a2bbfa12
commit
ab18f56db4
1 changed files with 7 additions and 3 deletions
|
|
@ -43,8 +43,7 @@ MAN= efivar.3
|
|||
|
||||
CFLAGS+= -I${EFIBOOT}/include
|
||||
CFLAGS+= -I${.CURDIR} -I${EDK2INC}
|
||||
|
||||
CFLAGS.efivar-dp-format.c=-Wno-unused-parameter
|
||||
CFLAGS+= -fno-strict-aliasing
|
||||
|
||||
MLINKS+=efivar.3 efi_set_variables_supported.3 \
|
||||
efivar.3 efi_del_variable.3 \
|
||||
|
|
@ -65,4 +64,9 @@ WARNS?= 9
|
|||
|
||||
.include <bsd.lib.mk>
|
||||
|
||||
CFLAGS+= -fno-strict-aliasing -Wno-cast-align -Wno-unused-parameter
|
||||
CWARNFLAGS+= -Wno-cast-align
|
||||
CWARNFLAGS+= -Wno-unused-parameter
|
||||
|
||||
.if ${COMPILER_TYPE} == "clang" && ${COMPILER_VERSION} >= 130000
|
||||
CWARNFLAGS+= -Wno-unused-but-set-variable
|
||||
.endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue