GCC 9.3.0をソースコードからビルドする
GCCを自分でビルドしてみたい時に読んでください。
ソースコードをダウンロード && 展開
wget http://ftp.tsukuba.wide.ad.jp/software/gcc/releases/gcc-9.3.0/gcc-9.3.0.tar.xz
tar xf gcc-9.3.0.tar.xz
ビルド・インストールディレクトリを作成
wget http://ftp.tsukuba.wide.ad.jp/software/gcc/releases/gcc-9.3.0/gcc-9.3.0.tar.xz
tar xf gcc-9.3.0.tar.xz
build
: ビルドに使用するディレクトリ
install
: 現在ディレクトリ直下にinstall
を作成し、そこにインストールする。他にインストール場合は任意のものに変える
mkdir build install
プレビルド
GCCのビルドに必要なパッケージを取得する
pushd gcc-9.3.0
./contrib/download_prerequisites
popd
ビルド
pushd build
../gcc-9.3.0/configure --prefix=./install \
--enable-languages=c,c++,fortran \
--disable-multilib \
--disable-bootstrap
make
make install
popd
pushd build
../gcc-9.3.0/configure --prefix=./install \
--enable-languages=c,c++,fortran \
--disable-multilib \
--disable-bootstrap
make
make install
popd
make
する部分はお好みでmake -j4
のようにすると4プロセス並列ビルドする。筆者はVMでやっているためメモリ不足が怖くて並列ビルドはしていない。
Author And Source
この問題について(GCC 9.3.0をソースコードからビルドする), 我々は、より多くの情報をここで見つけました https://qiita.com/uyuni/items/5f5d2eee9fbbf12090ee著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .