Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

C++ in Red hat linux...

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
hi ...
Can you pls suggest me from where I can download C++ compliler for linux....I am using Red Hat linux 7..
Thanks In Advance..
Santanu
 
Hi,

The linux c++ compiler is part of gcc, i.e. the GNU compiler collection. You just need to get hold of and install the rpms beginning with gcc.

ftp://rpmfind.net/linux/redhat/7.2/en/os/i386/RedHat/RPMS/gcc-2.96-98.i386.rpm
ftp://rpmfind.net/linux/redhat/7.2/en/os/i386/RedHat/RPMS/gcc-c++-2.96-98.i386.rpm

You can also install the newer 3.0 stuff :

ftp://rpmfind.net/linux/redhat/7.2/en/os/i386/RedHat/RPMS/gcc3-3.0.1-3.i386.rpm
ftp://rpmfind.net/linux/redhat/7.2/en/os/i386/RedHat/RPMS/gcc3-c++-3.0.1-3.i386.rpm

Just download and install as root with :

rpm -Uvh gcc*.rpm

If you didn't install any of the development stuff you'll also probably need some other rpms as well as just the compilers ....

Hope this helps
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top