Linux – yum install gcc-g++ doesn’t work anymore in CentOs 6.4

centoslinuxyum

Today installed CentOs 6.4 fresh new on my workstation.

I wanted to install g++. With my surprise I didn't succeed by using

 yum install gcc-g++

The thing is that even by doing a search I don't get any result.

 # No package available
 yum search g++

On top of that I installed successfully gcc.

Do you know whether I am using the wrong package name or what should I do?

Best Answer

Have you tried:
yum install gcc-c++

Related Question