Łukasz Lew
Łukasz Lew

Reputation: 50228

How to install g++ 4.4 on Ubuntu?

There is a Debian g++-4.4 package, but it's not Ubuntu. There are too many system-destroyed scary stories on the web.

How can I install g++ 4.4 on Ubuntu?

Upvotes: 6

Views: 41833

Answers (7)

John Woodruff
John Woodruff

Reputation: 1666

From your terminal type sudo apt-get install g++. It's been working great for me!

Upvotes: 1

Lucas Arbiza
Lucas Arbiza

Reputation: 273

I recomend you install build-essential package that contains g++.

Type it in your terminal:

$ sudo apt-get install build-essential

Then confirm installation.

Upvotes: 17

MighMoS
MighMoS

Reputation: 1254

I would recommend against it. Requiring a newer version of g++ will require that if you use any new features of 4.4 then your users will also require a 4.4 runtime library. That being said, I would just download the source, ./configure --ALLMYOPTS&&make && sudo make install. If you want to make a gcc similar to the one shipped with Ubuntu, apt-get source gcc and look in debian/rules for their configure flags (they may be applied on multiple lines).

Upvotes: 0

user36457
user36457

Reputation:

If it is in a debian repository, it should would under Ubuntu no problem. If you would like to add a repository, simply follow the directions here.

Upvotes: 0

Zifre
Zifre

Reputation: 26998

Debian packages should work on Ubuntu. It is based on Debian.

Edit: Try this :

sudo apt-get install gcc-snapshot

Upvotes: 2

Diego Sevilla
Diego Sevilla

Reputation: 29001

Have a look at this URL. I installed gcc-4.4 (and g++-4.4) from there, which seem to be the most official group of hackers that actually put gcc-4.4 into an ubuntu .deb. Till now running without problems :

https://launchpad.net/~ubuntu-toolchain/+archive/ppa

Regards.

Upvotes: 2

Related Questions