]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
RISC-V: Enable riscv attributes by default for all riscv targets.
authorJim Wilson <jimw@sifive.com>
Thu, 3 Jun 2021 20:50:34 +0000 (13:50 -0700)
committerJim Wilson <jimw@sifive.com>
Thu, 3 Jun 2021 20:54:12 +0000 (13:54 -0700)
These were only enabled for embedded elf originally because that was
the safe option, and linux had no obvious use for them.  But now that
we have new extensions coming like V that affect process state and ABIs,
the attributes are expected to be useful for linux, and may be required
by the psABI.  clang already emits them for all riscv targets.

gcc/
* config.gcc (riscv*-*-*): If --with-riscv-attribute not used,
turn it on for all riscv targets.

gcc/config.gcc

index 92fad8e20ca20640b8baaf245f99dd54c2e879fb..6833a6c13d945cd39532e48676482054d0b2fa56 100644 (file)
@@ -4605,14 +4605,7 @@ case "${target}" in
                        tm_defines="${tm_defines} TARGET_RISCV_ATTRIBUTE=0"
                        ;;
                ""|default)
-                       case "${target}" in
-                       riscv*-*-elf*)
-                               tm_defines="${tm_defines} TARGET_RISCV_ATTRIBUTE=1"
-                               ;;
-                       *)
-                               tm_defines="${tm_defines} TARGET_RISCV_ATTRIBUTE=0"
-                               ;;
-                       esac
+                       tm_defines="${tm_defines} TARGET_RISCV_ATTRIBUTE=1"
                        ;;
                *)
                        echo "--with-riscv-attribute=${with_riscv_attribute} is not supported.  The argument must begin with yes, no or default." 1>&2