Difference between revisions of "Sega Genesis (m68k, z80) GCC 9.3.0 cross-compiler instructions"

From Aram's Wiki
Jump to: navigation, search
(Created page with "== Introduction == We'll build a GCC 9.2.0 targeting m68k (Sega Genesis). == Create directories == cd $HOME mkdir -p src obj/{binutils-build,gcc-build,newlib-build} == G...")
(No difference)

Revision as of 14:24, 10 November 2019

Introduction

We'll build a GCC 9.2.0 targeting m68k (Sega Genesis).

Create directories

cd $HOME
mkdir -p src obj/{binutils-build,gcc-build,newlib-build}

Get GCC and binutils

curl https://ftp.gnu.org/gnu/binutils/binutils-2.33.1.tar.gz | tar -C $HOME/src -xf -
curl https://ftp.gnu.org/gnu/gcc/gcc-9.2.0/gcc-9.2.0.tar.gz | tar -C $HOME/src -xf -
curl ftp://sourceware.org/pub/newlib/newlib-3.1.0.tar.gz | tar -C $HOME/src -xf -

Download prerequisites

cd $HOME/src/gcc-9.2.0
./contrib/download_prerequisites

Build and install binutils

cd $HOME/obj/binutils-build
../../src/binutils-2.33.1/configure --prefix $HOME/xgcc --bindir $HOME/bin --target m68k-elf --with-cpu=m68000
make -j8 && make install

Build and install bare metal gcc

cd $HOME/obj/gcc-build
../../src/gcc-9.2.0/configure --prefix $HOME/xgcc --bindir $HOME/bin --target m68k-elf --with-cpu=m68000 --enable-languages=c --with-gnu-as --with-gnu-ld --without-headers --with-newlib
make -j8 all-gcc install-gcc

Build and install newlib

cd $HOME/obj/newlib-build
../../src/newlib-3.1.0/configure --prefix $HOME/xgcc --bindir $HOME/bin --target m68k-elf --with-cpu=m68000
make -j8 all install

Build and install newlib gcc

rm -rf $HOME/obj/gcc-build && mkdir -p $HOME/obj/gcc-build
cd $HOME/obj/gcc-build
../../src/gcc-9.2.0/configure --prefix $HOME/xgcc --bindir $HOME/bin --target m68k-elf --with-cpu=m68000 --enable-languages=c --with-gnu-as --with-gnu-ld --with-newlib
make -j8 all install