Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been unsuccessfully searching for a way to install make utility on my CentOS 5.2. I've looked through some RPM repositories and online, with no avail. Installing gcc, gcc-c++ didn't help! Package build-essential is not made for CentOS/RHEL. I have RPMFORGE repo enabled in YUM.

share|improve this question

3 Answers

up vote 6 down vote accepted

I just double checked and CentOS 5.2 already includes make!

I found it also in one of the online mirrors, if it is easier for you:

http://centos.cogentcloud.com/5.2/os/i386/CentOS/make-3.81-3.el5.i386.rpm

if you installed the 64 bit version:

http://centos.cogentcloud.com/5.2/os/x86_64/CentOS/make-3.81-3.el5.x86_64.rpm

share|improve this answer
Thanks, this worked. My Slicehost account includes a barebone install of CentOS, nothing but the raw OS... – DV. Oct 5 '08 at 5:18
yum groupinstall "Development Tools"

or

yum install gcc gcc-c++ kernel-devel
share|improve this answer
The second method doesn't install make – Christian Feb 25 at 11:16
yum install make

also works.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.