Tell me more ×
Unix & Linux Stack Exchange is a question and answer site for users of Linux, FreeBSD and other Un*x-like operating systems.. It's 100% free, no registration required.

What is the Fedora equivalent of the Debian build-essential package?

share|improve this question

2 Answers

up vote 10 down vote accepted

The closest equivalent would probably be to install the below packages:

su -    
yum install make automake gcc gcc-c++ kernel-devel

However, if you don't care about exact equivalence and are ok with pulling in a lot of packages you can install all the development tools and libraries with the below command.

su -
yum groupinstall "Development Tools" "Development Libraries"
share|improve this answer

The command is yum-builddep. It is included in the yum-utils package.

sudo yum install yum-utils
sudo yum-builddep $the_pkg_you_want_to_build
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.