From fd3eb3ae761b0d4b34e2edad855da2026e6dccfa Mon Sep 17 00:00:00 2001 From: kentosama Date: Sun, 16 Aug 2020 09:53:05 +0200 Subject: [PATCH] Errors fixed --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9b4637a..3d5f662 100644 --- a/README.md +++ b/README.md @@ -15,13 +15,13 @@ $ sudo pacman -S base-devel **Debian** ```bash $ sudo apt update -$ sudo apt install build-essential +$ sudo apt install build-essential textinfo ``` **Ubuntu** ```bash $ sudo apt update -$ sudo apt install build-essential +$ sudo apt install build-essential textinfo ``` **Fedora** @@ -41,7 +41,7 @@ cd m68k-elf-gcc Now, you can run **build-toolchain.sh** for start the build. The process should take approximately 15 min or several hours depending on your computer. **Please, don't run this script as root!** ```bash -$ ./buid-toolchain.sh +$ ./build-toolchain.sh ``` For build the toolchain with the newlib, use `--with-newlib` argument: @@ -64,16 +64,16 @@ $ ./build-toolchain.sh --program-prefix=sega-genesis- ## Install -Once the SH2 toolchain was successful built, you can process to the installation. Move or copy the "sh2-toolchain" folder in "/opt" or "/usr/local": +Once the Motorola 68000 toolchain was successful built, you can process to the installation. Move or copy the "m68k-toolchain" folder in "/opt" or "/usr/local": ```bash $ sudo cp -R m68k-toolchain /opt ``` -If you want, add the SH2 toolchain to your path environment: +If you want, add the Motorola 68000 toolchain to your path environment: ```bash -$ echo export PATH="${PATH}:/opt/m68k-toolchain/bin" > ~/.bash_profile +$ echo export PATH="${PATH}:/opt/m68k-toolchain/bin" > ~/.bashrc $ source ~/.bash_profile ```