1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2026-01-01 01:41:18 +01:00

Merge pull request #6351 from smlng/pr/pkg/tinydtls_compile_errors

pkg/tinydtls: add compiler flags to Makefile.include
This commit is contained in:
Martine Lenders 2017-01-19 01:54:24 +01:00 committed by GitHub
commit 944a8d9a8b

View File

@ -2,6 +2,10 @@ PKG_BUILDDIR ?= $(BINDIRBASE)/pkg/$(BOARD)/tinydtls
INCLUDES += -I$(PKG_BUILDDIR)
ifeq ($(shell uname -s),Darwin)
CFLAGS += -Wno-gnu-zero-variadic-macro-arguments -Wno-unused-function
endif
ifneq (,$(filter tinydtls_aes,$(USEMODULE)))
DIRS += $(PKG_BUILDDIR)/aes
endif