-
Notifications
You must be signed in to change notification settings - Fork 2k
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
pkg: blacklist selected pkg
s for LLVM/clang
#9734
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
5aaa0b2
micro-ecc: blacklist LLVM/clang
miri64 14eb760
openthread: blacklist LLVM/clang
miri64 6a56be5
nrf_softdevice_ble: blacklist LLVM/clang
miri64 ed5dde0
qDSA: blacklist LLVM/clang
miri64 58f7150
jerryscript: blacklist LLVM/clang
miri64 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,9 @@ | ||
INCLUDES += -I$(PKGDIRBASE)/jerryscript/jerry-core/include | ||
INCLUDES += -I$(PKGDIRBASE)/jerryscript/jerry-ext/include | ||
|
||
ifneq (,$(filter cortex-m%,$(CPU_ARCH))) | ||
# jerryscript package package is not using system includes right now, so | ||
# many newlib hearders (not even stdio.h) is found | ||
# Fixed in #9821 (so remove when merged) | ||
TOOLCHAINS_BLACKLIST += llvm | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
INCLUDES += -I$(PKGDIRBASE)/micro-ecc | ||
|
||
ifneq (,$(filter cortex-m0%,$(CPU_ARCH))) | ||
# LLVM/clang can't handle the inline assembler instructions on M0 in this | ||
# package | ||
TOOLCHAINS_BLACKLIST += llvm | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,3 +31,6 @@ DIRS += \ | |
$(NORDIC_SRCS)/components/softdevice/common/softdevice_handler \ | ||
$(NORDIC_SRCS)/components/ble/common \ | ||
$(NORDIC_SRCS)/components/iot/ble_ipsp | ||
|
||
# LLVM ARM assembler has massive problems digesting this | ||
TOOLCHAINS_BLACKLIST += llvm | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. OK it fails for |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,9 @@ ifneq (,$(filter openthread_contrib,$(USEMODULE))) | |
DIRS += $(OPENTHREAD_DIR)/contrib | ||
DIRS += $(OPENTHREAD_DIR)/contrib/netdev | ||
endif | ||
|
||
ifneq (,$(filter cortex-m0% cortex-m3%,$(CPU_ARCH))) | ||
# There are problem with unused `-mcpu...` arguments in clang and with | ||
# ranlib + LLVM/clang in this package with Cortex-M0 and M3 | ||
TOOLCHAINS_BLACKLIST += llvm | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I get the same for |
||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok it fails for
samr21-xpro
intests/pkg_micro-ecc
.