From e1ea18fea25a039fd9fc3a9b74697da0c029718a Mon Sep 17 00:00:00 2001 From: Gunar Schorcht Date: Mon, 7 Aug 2023 13:21:31 +0200 Subject: [PATCH] cpu/riscv_common: remove picolibc from blacklisting in CI --- cpu/riscv_common/Kconfig | 2 +- cpu/riscv_common/Makefile.features | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/cpu/riscv_common/Kconfig b/cpu/riscv_common/Kconfig index a934e0d37e46..cbc283c1f9d2 100644 --- a/cpu/riscv_common/Kconfig +++ b/cpu/riscv_common/Kconfig @@ -11,7 +11,7 @@ config CPU_ARCH_RISCV select HAS_LIBSTDCPP select HAS_NEWLIB select HAS_PERIPH_CORETIMER - select HAS_PICOLIBC if '$(RIOT_CI_BUILD)' != '1' + select HAS_PICOLIBC select HAS_PUF_SRAM select HAS_RUST_TARGET select HAS_SSP diff --git a/cpu/riscv_common/Makefile.features b/cpu/riscv_common/Makefile.features index eaa184880930..174b9d04dad8 100644 --- a/cpu/riscv_common/Makefile.features +++ b/cpu/riscv_common/Makefile.features @@ -13,6 +13,4 @@ FEATURES_PROVIDED += rust_target FEATURES_PROVIDED += ssp # RISC-V toolchain on CI does not work properly with picolibc yet -ifeq (,$(RIOT_CI_BUILD)) - FEATURES_PROVIDED += picolibc -endif +FEATURES_PROVIDED += picolibc