mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
708e5eadb4
This triggers a known bug much more often than with gnu toolchains to the point that merging this PR without disabling the test would render the CI useless.
14 lines
401 B
Makefile
14 lines
401 B
Makefile
include ../Makefile.bench_common
|
|
|
|
# we use thread flags in this benchmark by default, disable on demand
|
|
USEMODULE += core_thread_flags
|
|
USEMODULE += benchmark
|
|
|
|
ifeq (llvm,$(TOOLCHAIN))
|
|
# the floating point exception bug is more likely to trigger when build
|
|
# with LLVM, so we just disable LLVM on native as a work around
|
|
TEST_ON_CI_BLACKLIST += native
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.include
|