aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKito Cheng <kito.cheng@sifive.com>2023-04-20 22:41:43 +0800
committerGitHub <noreply@github.com>2023-04-20 22:41:43 +0800
commit016637ce7094975e390039dc007613e89fc79871 (patch)
treec6dd4402194f9bd1e7969dab8456178b2c2ce8d1
parent05bf07325957e23e3e39442620b09783b18ed508 (diff)
parent2ca32c0ea600505ea9339eced711360faf7d9908 (diff)
downloadriscv-gnu-toolchain-016637ce7094975e390039dc007613e89fc79871.zip
riscv-gnu-toolchain-016637ce7094975e390039dc007613e89fc79871.tar.gz
riscv-gnu-toolchain-016637ce7094975e390039dc007613e89fc79871.tar.bz2
Merge pull request #1235 from amitch1999/master2023.04.21
changed riscv-gcc references to gcc in README
-rw-r--r--README.md18
1 files changed, 9 insertions, 9 deletions
diff --git a/README.md b/README.md
index 0281d30..d9b3df8 100644
--- a/README.md
+++ b/README.md
@@ -263,9 +263,9 @@ Or you can upgrade specific submodule only.
git submodule update --remote <component>
-For example, upgrade riscv-gcc only, you can using following command:
+For example, upgrade gcc only, you can using following command:
- git submodule update --remote riscv-gcc
+ git submodule update --remote gcc
#### How to Check Which Branch are Used for Specific submodule
@@ -273,15 +273,15 @@ The branch info has recorded in `.gitmodules` file, which can set or update via
`git submodule add -b` or `git submodule set-branch`.
However the only way to check which branch are using is to check `.gitmodules`
-file, here is the example for `riscv-gcc`, it using riscv-gcc-10.2.0 branch, so
-it will has a section named `riscv-gcc` and has a field `branch` is
-`riscv-gcc-10.2.0`.
+file, here is the example for `gcc`, it's using releases/gcc-12 branch, so
+it will has a section named `gcc` and has a field `branch` is
+`releases/gcc-12`.
```
-[submodule "riscv-gcc"]
- path = riscv-gcc
- url = ../riscv-gcc.git
- branch = riscv-gcc-10.2.0
+[submodule "gcc"]
+ path = gcc
+ url = ../gcc.git
+ branch = releases/gcc-12
```
#### Use Source Tree Other Than `riscv-gnu-toolchain`