aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorachernia <achernia@cadence.com>2023-04-20 17:25:40 +0300
committerachernia <achernia@cadence.com>2023-04-20 17:33:21 +0300
commit2ca32c0ea600505ea9339eced711360faf7d9908 (patch)
treec6dd4402194f9bd1e7969dab8456178b2c2ce8d1
parent05bf07325957e23e3e39442620b09783b18ed508 (diff)
downloadriscv-gnu-toolchain-2ca32c0ea600505ea9339eced711360faf7d9908.zip
riscv-gnu-toolchain-2ca32c0ea600505ea9339eced711360faf7d9908.tar.gz
riscv-gnu-toolchain-2ca32c0ea600505ea9339eced711360faf7d9908.tar.bz2
changed riscv-gcc references to gcc
-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`