Ubuntu GCC?

Elios

Supreme [H]ardness
Joined
Aug 12, 2004
Messages
7,286
ok i have been trying for the past hour to get gcc/gpp/g++ installed and workin on my ubuntu box and i seem to be missing some thing what packages to i need to make it work?
 
Ubuntu doesn't come with gcc installed by default.

Code:
apt-get install gcc

pulls in gcc4, version 4.0.3 I believe. If you need a gcc3 install, there is gcc-3.4, gcc-3.3.

Besides using apt-cache search, you can also check out the ubuntu package list.

http://packages.ubuntu.com
 
BillLeeLee said:
Ubuntu doesn't come with gcc installed by default.

Code:
apt-get install gcc

pulls in gcc4, version 4.0.3 I believe. If you need a gcc3 install, there is gcc-3.4, gcc-3.3.

Besides using apt-cache search, you can also check out the ubuntu package list.

http://packages.ubuntu.com

i tryed that but i cant seem to get it working
 
As I Lay Dying said:
Code:
sudo aptitude install build-essential

this will download the necessary compilers/lib etc etc etc.


that did it thanks
 
Back
Top