Make and build utilities on CentOS/RHEL?
Asked Answered
O

5

39

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.

Osteoclast answered 5/10, 2008 at 4:45 Comment(0)
F
11

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

Fortson answered 5/10, 2008 at 5:12 Comment(1)
Thanks, this worked. My Slicehost account includes a barebone install of CentOS, nothing but the raw OS...Osteoclast
U
89
yum groupinstall "Development Tools"

or

yum install gcc gcc-c++ kernel-devel
Ule answered 19/8, 2010 at 15:30 Comment(1)
The second method doesn't install makeLambskin
B
39
yum install make

also works.

Beaconsfield answered 8/10, 2009 at 17:13 Comment(0)
F
11

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

Fortson answered 5/10, 2008 at 5:12 Comment(1)
Thanks, this worked. My Slicehost account includes a barebone install of CentOS, nothing but the raw OS...Osteoclast
V
4

You'll need this if groupinstall doesn't work:

yum install -y gcc-c++ make

Vandiver answered 31/8, 2017 at 18:14 Comment(0)
R
1

This command works for me

yum groupinstall "Development Tools" -y 
Rebellious answered 21/5, 2020 at 22:21 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.