Skip to content

Commit 95e8e26

Browse files
authored
triple: Add riscv32be riscv64be support (#4648)
Signed-off-by: Yonggang Luo <[email protected]>
1 parent 9db3902 commit 95e8e26

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## 1.23
44

5+
Features:
6+
- triple: Add riscv32be riscv64be support. [#4648](https://github.com/microsoft/vscode-cmake-tools/pull/4648) [@lygstate](https://github.com/lygstate)
7+
58
Bug Fixes:
69

710
- Fix user-level tasks defined in `~/.config/Code/User/tasks.json` causing infinite spinner. [#4659](https://github.com/microsoft/vscode-cmake-tools/pull/4659)

src/triple.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,10 @@ const TriplePossibleArch: { [index: string]: RegExp } = {
5858
powerpc: /^powerpc$/,
5959
powerpcle: /^powerpcle$/,
6060
rl78: /^rl78/,
61-
riscv32: /^riscv32/,
62-
riscv64: /^riscv64/,
61+
riscv32: /^riscv32$/,
62+
riscv32be: /^riscv32be/,
63+
riscv64: /^riscv64$/,
64+
riscv64be: /^riscv64be/,
6365
rx: /^rx/,
6466
s390: /^s390$/,
6567
s390x: /^s390x$/,

0 commit comments

Comments
 (0)