1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #13297 from Einhornhool/cryptoauth-llvm

pkg/cryptoauthlib: add includes to cflags for llvm
This commit is contained in:
Peter Kietzmann 2020-02-05 22:11:44 +01:00 committed by GitHub
commit f871f64292
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View File

@ -11,9 +11,11 @@ include $(RIOTBASE)/pkg/pkg.mk
CMAKE_MINIMAL_VERSION = 3.6.0
CFLAGS += $(INCLUDES)
CFLAGS += -Wno-missing-field-initializers -Wno-unused-function
CFLAGS += -Wno-type-limits -Wno-strict-aliasing -Wno-unused-variable -DATCA_HAL_I2C
CFLAGS += -Wno-unused-parameter -Wno-sign-compare -Wno-overflow -Wno-pointer-to-int-cast
CFLAGS += -Wno-char-subscripts
TOOLCHAIN_FILE=$(PKG_BUILDDIR)/xcompile-toolchain.cmake

View File

@ -14,7 +14,3 @@ ifneq (,$(filter cryptoauthlib_test,$(USEMODULE)))
INCLUDES += -I$(PKG_TESTINCLDIR)/tng
INCLUDES += -I$(PKG_TESTINCLDIR)/atcacert
endif
ifneq (,$(filter cortex-m%,$(CPU_ARCH)))
TOOLCHAINS_BLACKLIST += llvm
endif