0

I just installed Debian 6.0.7 and noticed that the "stable" branch comes with gcc 4.4. I'd like to be able to use a newer compiler without totally switching to testing; is there something that would make this easier? I've tried compiling gcc a few times and it never went so well for me. Mainly I want the code generation improvements, as well as the -Og option I read about, which applies optimizations that will not mess with debugging of code. Any help would be appreciated. Thanks,

4

1 に答える 1

0

システムの残りの部分を安定版のままにして、テストから選択したパッケージをインストールするように apt を構成できます。 .

簡単に言えば、次を追加します。

Package: *
Pin: release a=testing
Pin-Priority: 100

これにより、パッケージがデフォルトでインストールされないことが保証され、wheezy リポジトリがファイルに追加され/etc/apt/preferencesます。/etc/apt/preferences.d/sources.list

deb     http://ftp.us.debian.org/debian testing main
deb-src http://ftp.us.debian.org/debian testing main

その後、apt-get updateg++-4.7 をインストールできるはずです。うまくいけば、他の多くのパッケージを取り込まないでしょう。これにより、g++-4.7 をコンパイラとして使用できるようになります (デフォルトの g++ を変更する必要はありません)。

于 2013-03-19T05:30:29.140 に答える