Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

backport: 2018.10 compile fixes #10759

Merged
merged 3 commits into from
Jan 14, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions pkg/jerryscript/Makefile.jerryscript
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ JERRYHEAP ?= 16

EXT_CFLAGS :=-D__TARGET_RIOT

ifeq ($(TOOLCHAIN)_$(BOARD),llvm_native)
EXT_CFLAGS :=-D__TARGET_RIOT -Wno-conversion
endif

.PHONY: libjerry riot-jerry flash clean

# all: libjerry riot-jerry
Expand Down
1 change: 1 addition & 0 deletions pkg/nimble/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ CFLAGS += -Wno-extra
# tell LLVM/clang not to be so pedantic with this.
ifeq (llvm,$(TOOLCHAIN))
CFLAGS += -Wno-unused-function
CFLAGS += -Wno-address-of-packed-member
endif

.PHONY: all
Expand Down
2 changes: 1 addition & 1 deletion pkg/tinycrypt/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PKG_NAME=tinycrypt
PKG_URL=https://github.com/01org/tinycrypt
PKG_VERSION=3ea1a609e7aff9f2d8d13803e1076b7a8e551804
PKG_VERSION=6a22712bebbf2fc60d9fc6192dddefd5ad1933e3
PKG_LICENSE=BSD-3-Clause

.PHONY: all
Expand Down