FPGA開発日記

カテゴリ別記事インデックス https://msyksphinz.github.io/github_pages , English Version https://fpgadevdiary.hatenadiary.com/

Interfaceのコンパイラ入門のビルドをやってみた(MIPS: 成功編)

こちらはMIPS。手修正なしでビルドできる。

../binutils-2.24/configure --target=mipsel-unknown-elf --disable-nls --enable-gold --prefix=/home/masayuki/gcc_mips
make
make install
  • GCCのインストール(1回目)
../gcc-4.9.2/configure --prefix=/home/masayuki/gcc_mips/ --target=mipsel-unknown-elf --disable-nls --disable-libssp --with-gnu-ld --with-gnu-as --disable-shared --enable-languages=c
make
make install
  • newlibのインストール
../newlib-2.1.0/configure --target=mipsel-unknown-elf --prefix=/home/masayuki/gcc_mips/
make
make install
  • GCCのインストール(2回目)
../gcc-4.9.2/configure --prefix=/home/masayuki/gcc_mips/ --target=mipsel-unknown-elf --disable-nls --disable-libssp --with-gnu-ld --with-gnu-as --disable-shared --enable-languages="c c++" --with-newlib
make
make install