Browse Source

add support for "riscv-none-*" host name (#309)

pull/310/head
valentinThomazic 2 years ago
committed by GitHub
parent
commit
710c23a5bb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      scripts/config.sub

5
scripts/config.sub

@ -300,7 +300,7 @@ case $basic_machine in
| powerpc | powerpc64 | powerpc64le | powerpcle \
| pru \
| pyramid \
| riscv32 | riscv64 \
| riscv | riscv32 | riscv64 \
| rl78 | rx \
| score \
| sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[234]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
@ -1314,6 +1314,9 @@ case $basic_machine in
*-unknown)
# Make sure to match an already-canonicalized machine name.
;;
*-none)
# Make sure to match an already-canonicalized machine name.
;;
*)
echo Invalid configuration \`"$1"\': machine \`"$basic_machine"\' not recognized 1>&2
exit 1

Loading…
Cancel
Save