diff options
author | Alexey Brodkin <abrodkin@synopsys.com> | 2024-09-02 17:09:55 -0700 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2024-09-09 08:58:59 +1200 |
commit | 5f77abf9b09c079b9cb996648c728159bb60d311 (patch) | |
tree | 0789fdc1a87b144d27e4c50cc693e675ddfe761e | |
parent | 901722d34b4eff6867a0c82ff375d7a27dce6a2b (diff) | |
download | crosstool-ng-5f77abf9b09c079b9cb996648c728159bb60d311.tar.gz crosstool-ng-5f77abf9b09c079b9cb996648c728159bb60d311.tar.bz2 crosstool-ng-5f77abf9b09c079b9cb996648c728159bb60d311.zip |
RISC-V: Remove EXPERIMENTAL tag
It's been a while since RISC-V support was added to CT-NG in 2017.
Since then RISC-V support was integrated in all the key toolchain
components upstream and now are proven to be in a very good state.
Thus it makes no sense to keep this architecture "hidden" in
experimental options, so we promote RISC-V architecture in CT-NG.
Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
-rw-r--r-- | config/arch/riscv.in | 1 | ||||
-rw-r--r-- | samples/riscv32-hifive1-elf/crosstool.config | 1 | ||||
-rw-r--r-- | samples/riscv32-picolibc-elf/crosstool.config | 1 | ||||
-rw-r--r-- | samples/riscv32-unknown-elf/crosstool.config | 1 | ||||
-rw-r--r-- | samples/riscv64-multilib-elf/crosstool.config | 1 | ||||
-rw-r--r-- | samples/riscv64-unknown-elf/crosstool.config | 1 | ||||
-rw-r--r-- | samples/riscv64-unknown-linux-gnu/crosstool.config | 1 |
7 files changed, 0 insertions, 7 deletions
diff --git a/config/arch/riscv.in b/config/arch/riscv.in index 3e6ffbfb..e7a54dd1 100644 --- a/config/arch/riscv.in +++ b/config/arch/riscv.in @@ -1,7 +1,6 @@ # RISC-V specific config options ## no-package -## depends on EXPERIMENTAL ## ## select ARCH_SUPPORTS_32 ## select ARCH_SUPPORTS_64 diff --git a/samples/riscv32-hifive1-elf/crosstool.config b/samples/riscv32-hifive1-elf/crosstool.config index 994cb337..99ca486e 100644 --- a/samples/riscv32-hifive1-elf/crosstool.config +++ b/samples/riscv32-hifive1-elf/crosstool.config @@ -1,5 +1,4 @@ CT_CONFIG_VERSION="4" -CT_EXPERIMENTAL=y CT_ARCH_RISCV=y CT_ARCH_ARCH="rv32ima" CT_ARCH_ABI="ilp32" diff --git a/samples/riscv32-picolibc-elf/crosstool.config b/samples/riscv32-picolibc-elf/crosstool.config index 68bafbad..9274e26a 100644 --- a/samples/riscv32-picolibc-elf/crosstool.config +++ b/samples/riscv32-picolibc-elf/crosstool.config @@ -1,5 +1,4 @@ CT_CONFIG_VERSION="4" -CT_EXPERIMENTAL=y CT_ARCH_RISCV=y CT_MULTILIB=y CT_ARCH_ARCH="rv32imac_zicsr_zifencei" diff --git a/samples/riscv32-unknown-elf/crosstool.config b/samples/riscv32-unknown-elf/crosstool.config index 96d665b0..c827c046 100644 --- a/samples/riscv32-unknown-elf/crosstool.config +++ b/samples/riscv32-unknown-elf/crosstool.config @@ -1,5 +1,4 @@ CT_CONFIG_VERSION="4" -CT_EXPERIMENTAL=y CT_ARCH_RISCV=y CT_TARGET_VENDOR="" CT_LIBC_NONE=y diff --git a/samples/riscv64-multilib-elf/crosstool.config b/samples/riscv64-multilib-elf/crosstool.config index 99795791..c9a79602 100644 --- a/samples/riscv64-multilib-elf/crosstool.config +++ b/samples/riscv64-multilib-elf/crosstool.config @@ -1,5 +1,4 @@ CT_CONFIG_VERSION="4" -CT_EXPERIMENTAL=y CT_ARCH_RISCV=y CT_MULTILIB=y CT_ARCH_USE_MMU=y diff --git a/samples/riscv64-unknown-elf/crosstool.config b/samples/riscv64-unknown-elf/crosstool.config index 4ee03576..a6404c5a 100644 --- a/samples/riscv64-unknown-elf/crosstool.config +++ b/samples/riscv64-unknown-elf/crosstool.config @@ -1,5 +1,4 @@ CT_CONFIG_VERSION="4" -CT_EXPERIMENTAL=y CT_ARCH_RISCV=y # CT_DEMULTILIB is not set CT_ARCH_USE_MMU=y diff --git a/samples/riscv64-unknown-linux-gnu/crosstool.config b/samples/riscv64-unknown-linux-gnu/crosstool.config index e1457197..9c4f8095 100644 --- a/samples/riscv64-unknown-linux-gnu/crosstool.config +++ b/samples/riscv64-unknown-linux-gnu/crosstool.config @@ -1,5 +1,4 @@ CT_CONFIG_VERSION="4" -CT_EXPERIMENTAL=y CT_ARCH_RISCV=y # CT_DEMULTILIB is not set CT_ARCH_USE_MMU=y |