mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
pkg/wolfssl: add -Wno-cast-align
This commit is contained in:
parent
939e206d58
commit
4ac6820860
@ -11,6 +11,12 @@ include $(RIOTBASE)/pkg/pkg.mk
|
||||
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90710#c1
|
||||
CFLAGS += -Wno-maybe-uninitialized
|
||||
|
||||
# wolfcrypt uses uint8_t for block buffers, on which fast
|
||||
# 32 bit operations are performed. From a quick peek at the
|
||||
# code it looks like the buffers are correctly aligned, so
|
||||
# this is a false positive.
|
||||
CFLAGS += -Wno-cast-align
|
||||
|
||||
.PHONY: wolfcrypt%
|
||||
|
||||
all: $(filter wolfcrypt wolfcrypt-test wolfcrypt-benchmark,$(USEMODULE))
|
||||
|
Loading…
Reference in New Issue
Block a user