Skip to content

Instantly share code, notes, and snippets.

@syuu1228
Created September 23, 2010 21:34
Show Gist options
  • Save syuu1228/594421 to your computer and use it in GitHub Desktop.
Save syuu1228/594421 to your computer and use it in GitHub Desktop.
wget ftp://ftp.iij.ad.jp/pub/gnu/gnu/binutils/binutils-2.20.1.tar.bz2
tar -xvjpf binutils-2.20.1.tar.bz2
cd binutils-2.20.1
./configure --target=h8300-elf
make
sudo make install
wget ftp://ftp.iij.ad.jp/pub/gnu/gnu/gcc/gcc-4.5.1/gcc-4.5.1.tar.bz2
tar -xvjpf gcc-core-4.5.1.tar.bz2
cd gcc-4.5.1
mkdir build-h8300-elf
cd build-h8300-elf
../configure --target=h8300-elf --enable-languages=c --disable-nls --disable-multilib --disable-libssp
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment