mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-27 07:21:18 +01:00
14 lines
412 B
Makefile
14 lines
412 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 += native32 native64
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.include
|