diff options
| author | lameguy64 <lameguy64@ponce.localdomain> | 2019-04-12 21:35:44 +0800 |
|---|---|---|
| committer | lameguy64 <lameguy64@ponce.localdomain> | 2019-04-12 21:35:44 +0800 |
| commit | e70cd149f41ea71f9ca9ee86c03d1e59005dad2a (patch) | |
| tree | 7bd5cb712553ae06844b3f89c5d2590d98d9b470 | |
| parent | 349726bb0aa31235222691540ee2c276a309e863 (diff) | |
| download | psn00bsdk-e70cd149f41ea71f9ca9ee86c03d1e59005dad2a.tar.gz | |
Fixed a typo in the prefix parameter for configuring GCC and removed switch that disables libgcc from being built
| -rw-r--r-- | toolchain.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain.txt b/toolchain.txt index 5bb4243..c9ae101 100644 --- a/toolchain.txt +++ b/toolchain.txt @@ -24,7 +24,7 @@ Building gcc: * Create a directory named gcc-build inside the gcc directory. * Configure gcc from the gcc-build directory with the following parameters: -../gcc-<version>/configure --disable-nls --disable-libada --disable-libssp --disable-libquadmath --disable-libstdc++-v3 --disable-libgcc --target=mipsel-unknown-elf --prefix=/usr/local/mips-unknown-elf --with-float=soft --enable-languages=c,c++ --with-gnu-as --with-gnu-ld +../gcc-<version>/configure --disable-nls --disable-libada --disable-libssp --disable-libquadmath --disable-libstdc++-v3 --target=mipsel-unknown-elf --prefix=/usr/local/mipsel-unknown-elf --with-float=soft --enable-languages=c,c++ --with-gnu-as --with-gnu-ld Replace <version> with the version of gcc you downloaded. The prefix must be the same as the prefix you specified for binutils. * Run make in the same manner as you built binutils to build gcc. |
