mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
5ed0bafc92
- Adapted build system and test checks for the native boards to include native64 - Added `native64` to the same tests as `native`
14 lines
410 B
Makefile
14 lines
410 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 native64
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.include
|