Mac OSX 10.6 SnowLeopardでSHとH8のためのプログラムをコンパイルするためのGCCをコンパイルしました。
なかなか最初はうまくいきませんでしたが、いくつかオプションを指定することでうまくいきました。
基本的にクロスコンパイル環境はbinutilsをコンパイルし、その後にGCCをnewlibといっしょにコンパイルすることになります。
その前に、GCCのコンパイルにはGMPとMPFR及び、MPCをインストールしておく必要があります。
今回使ったバージョンは以下の通りです。
- GMP 5.0.1
- MPFR 2.4.2
- MPC 0.8.1
- binutils 2.20
- newlib 1.18.0
- gcc 4.5.0
これらが~/src/以下に展開されている状態である場合のコンパイル例が以下の通りです。SHとH8の違いはTargetがsh-elfかh8300-elfかの違いだけです。
また~/.bash_profileに以下の二行を追加しておきます。
export PATH=$PATH:/usr/local/sh/binexport PATH=$PATH:/usr/local/h8/bin
$ cd ~/src$ cd ./gmp-5.0.1$ ./configure$ make$ sudo install$ cd ../mpfr-2.4.2$ ./configure$ make$ sudo install$ cd ../mpc-0.8.1$ ./configure$ make$ sudo install$ cd ../gcc-4.5.0$ ln -s ~/src/newlib-1.18.0/newlib ./$ cd ../$ mkdir h8-binutils$ cd ./h8-binutils$ ../binutils-2.20/configure –prefix=/usr/local/h8 –program-prefix=h8300-elf- –target=h8300-elf –disable-nls –disable-werror$ CC=’cc -no-cpp-precomp’ CFLAGS=”-O2 -fomit-frame-pointer” make all$ sudo make install$ cd ../$ mkdir h8-gcc$ cd ./h8-gcc$ ../gcc-4.5.0/configure –prefix=/usr/local/h8 –program-prefix=h8300-elf- –target=h8300-elf –with-newlib –enable-languages=c$ CC=’cc -no-cpp-precomp’ CFLAGS=”-O2 -fomit-frame-pointer” make all$ sudo make install$ cd ../$ mkdir h8-newlib$ cd ./h8-newlib$ ../newlib-1.18.0/configure –prefix=/usr/local/h8 –program-prefix=h8300-elf- –target=h8300-elf$ make$ sudo make install$ cd ../$ mkdir sh-binutils$ cd ./sh-binutils$ ../binutils-2.20/configure –prefix=/usr/local/sh –program-prefix=sh-elf- –target=sh-elf –disable-werror$ CC=’cc -no-cpp-precomp’ CFLAGS=”-O2 -fomit-frame-pointer” make all$ sudo make install$ cd ../$ mkdir sh-gcc$ cd ./sh-gcc$ ../gcc-4.5.0/configure –prefix=/usr/local/sh –program-prefix=sh-elf- –target=sh-elf –with-newlib –enable-languages=c$ CC=’cc -no-cpp-precomp’ CFLAGS=”-O2 -fomit-frame-pointer” make all$ sudo make install$ cd ../$ mkdir sh-newlib$ cd ./sh-newlib$ ../newlib-1.18.0/configure –prefix=/usr/local/sh –program-prefix=sh-elf- –target=sh-elf$ make$ sudo make install