2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[WSL/Ubuntu] プロキシ環境下でのgcc9.2インストールでつまずいた話

Last updated at Posted at 2020-02-12

前提

  • このサイトの手順に従って、ビルドに必要なパッケージのインストールとgccのビルド準備をする。
  • (ただし、今回インストールするのはgcc9.2であることに一応注意。)
$ sudo apt install build-essential
$ wget http://ftp.tsukuba.wide.ad.jp/software/gcc/releases/gcc-9.2.0/gcc-9.2.0.tar.xz
$ tar xvf gcc-9.2.0.tar.xz
$ cd gcc-9.2.0

問題

  • プロキシ環境下では、上記の次に行う下記コマンドでこける。(.bashrcで、export ftp_proxy="[アドレス]:[ポート]"を設定してもなぜかこける。)
$ contrib/download_prerequisites

対処法

  • ftpではなく、httpを使うように設定。
$ export http_proxy="[アドレス]:[ポート]"  # .bashrc等に書いている場合は不要
$ sed -i contrib/download_prerequisites -e '/base_url=/s/ftp/http/'
$ find -name \*.tar.\* -delete
$ contrib/download_prerequistes
  • makeからは手順通りでOK。

参考サイト

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?