diff options
author | alexsifivetw <alex.chiang@sifive.com> | 2023-06-01 05:41:12 -0700 |
---|---|---|
committer | alexsifivetw <alex.chiang@sifive.com> | 2023-06-01 05:41:12 -0700 |
commit | 9bd829ed9ac8b776e69a6b7cfec181c787eefd80 (patch) | |
tree | 24ddf3cc21614fea3ed4d9f010f167566b245ae5 | |
parent | 803fc9c4a259b8053f94f27a713b149d0d9a5088 (diff) | |
download | riscv-gnu-toolchain-9bd829ed9ac8b776e69a6b7cfec181c787eefd80.zip riscv-gnu-toolchain-9bd829ed9ac8b776e69a6b7cfec181c787eefd80.tar.gz riscv-gnu-toolchain-9bd829ed9ac8b776e69a6b7cfec181c787eefd80.tar.bz2 |
Fix typo
-rwxr-xr-x | .github/setup-apt.sh | 2 | ||||
-rw-r--r-- | README.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/setup-apt.sh b/.github/setup-apt.sh index 63bd682..f21888d 100755 --- a/.github/setup-apt.sh +++ b/.github/setup-apt.sh @@ -5,4 +5,4 @@ dpkg --add-architecture i386 apt update apt install -y autoconf automake autotools-dev curl python3 libmpc-dev libmpfr-dev \ libgmp-dev gawk build-essential bison flex texinfo gperf libtool \ - patchutils bc zlib1g-dev libexpat-dev git ninja-build cmake ibglib2.0-dev expect + patchutils bc zlib1g-dev libexpat-dev git ninja-build cmake libglib2.0-dev expect @@ -20,7 +20,7 @@ Several standard packages are needed to build the toolchain. On Ubuntu, executing the following command should suffice: - $ sudo apt-get install autoconf automake autotools-dev curl python3 libmpc-dev libmpfr-dev libgmp-dev gawk build-essential bison flex texinfo gperf libtool patchutils bc zlib1g-dev libexpat-dev ninja-build git cmake ibglib2.0-dev + $ sudo apt-get install autoconf automake autotools-dev curl python3 libmpc-dev libmpfr-dev libgmp-dev gawk build-essential bison flex texinfo gperf libtool patchutils bc zlib1g-dev libexpat-dev ninja-build git cmake libglib2.0-dev On Fedora/CentOS/RHEL OS, executing the following command should suffice: |