What is the Fedora equivalent of the Debian build-essential package?
Clash Royale CLAN TAG#URR8PPP
What is the Fedora equivalent of the Debian build-essential package?
fedora compiling packaging
add a comment |
What is the Fedora equivalent of the Debian build-essential package?
fedora compiling packaging
add a comment |
What is the Fedora equivalent of the Debian build-essential package?
fedora compiling packaging
What is the Fedora equivalent of the Debian build-essential package?
fedora compiling packaging
fedora compiling packaging
edited Oct 30 '15 at 16:34
Jeff Schaller
43.9k1161141
43.9k1161141
asked Aug 28 '10 at 14:07
Steve BurdineSteve Burdine
3,59652119
3,59652119
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
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"
4
Better answer below for modern Fedora
– Kirk
Oct 29 '16 at 12:03
add a comment |
For Fedora 23 and above:
dnf install @development-tools
For what it's worth, this is a literal equivalent tobuild-essential linux-headers-generic
; it only installs what's needed to compile software (like gcc and make) as well as kernel headers. Thanks!
– andlabs
Apr 26 '16 at 15:52
My mistake;linux-headers-generic
also requires Fedora packagelinux-devel
.
– andlabs
Apr 26 '16 at 18:38
1
I think the answer should be updated, since this is the better answer for modern versions of fedora.
– Kirk
Oct 29 '16 at 12:02
2
I had to runsudo dnf group install "C Development Tools and Libraries"
– davidtbernal
Nov 6 '16 at 21:29
add a comment |
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
5
This does not actually answer the asked question but is none-the-less useful to know
– Daniel S. Sterling
Aug 27 '13 at 21:52
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f1338%2fwhat-is-the-fedora-equivalent-of-the-debian-build-essential-package%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
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"
4
Better answer below for modern Fedora
– Kirk
Oct 29 '16 at 12:03
add a comment |
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"
4
Better answer below for modern Fedora
– Kirk
Oct 29 '16 at 12:03
add a comment |
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"
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"
answered Aug 28 '10 at 18:04
user1295user1295
1,3012104
1,3012104
4
Better answer below for modern Fedora
– Kirk
Oct 29 '16 at 12:03
add a comment |
4
Better answer below for modern Fedora
– Kirk
Oct 29 '16 at 12:03
4
4
Better answer below for modern Fedora
– Kirk
Oct 29 '16 at 12:03
Better answer below for modern Fedora
– Kirk
Oct 29 '16 at 12:03
add a comment |
For Fedora 23 and above:
dnf install @development-tools
For what it's worth, this is a literal equivalent tobuild-essential linux-headers-generic
; it only installs what's needed to compile software (like gcc and make) as well as kernel headers. Thanks!
– andlabs
Apr 26 '16 at 15:52
My mistake;linux-headers-generic
also requires Fedora packagelinux-devel
.
– andlabs
Apr 26 '16 at 18:38
1
I think the answer should be updated, since this is the better answer for modern versions of fedora.
– Kirk
Oct 29 '16 at 12:02
2
I had to runsudo dnf group install "C Development Tools and Libraries"
– davidtbernal
Nov 6 '16 at 21:29
add a comment |
For Fedora 23 and above:
dnf install @development-tools
For what it's worth, this is a literal equivalent tobuild-essential linux-headers-generic
; it only installs what's needed to compile software (like gcc and make) as well as kernel headers. Thanks!
– andlabs
Apr 26 '16 at 15:52
My mistake;linux-headers-generic
also requires Fedora packagelinux-devel
.
– andlabs
Apr 26 '16 at 18:38
1
I think the answer should be updated, since this is the better answer for modern versions of fedora.
– Kirk
Oct 29 '16 at 12:02
2
I had to runsudo dnf group install "C Development Tools and Libraries"
– davidtbernal
Nov 6 '16 at 21:29
add a comment |
For Fedora 23 and above:
dnf install @development-tools
For Fedora 23 and above:
dnf install @development-tools
edited Mar 3 at 11:15
answered Feb 1 '16 at 10:16
AlexanderAlexander
6,08322246
6,08322246
For what it's worth, this is a literal equivalent tobuild-essential linux-headers-generic
; it only installs what's needed to compile software (like gcc and make) as well as kernel headers. Thanks!
– andlabs
Apr 26 '16 at 15:52
My mistake;linux-headers-generic
also requires Fedora packagelinux-devel
.
– andlabs
Apr 26 '16 at 18:38
1
I think the answer should be updated, since this is the better answer for modern versions of fedora.
– Kirk
Oct 29 '16 at 12:02
2
I had to runsudo dnf group install "C Development Tools and Libraries"
– davidtbernal
Nov 6 '16 at 21:29
add a comment |
For what it's worth, this is a literal equivalent tobuild-essential linux-headers-generic
; it only installs what's needed to compile software (like gcc and make) as well as kernel headers. Thanks!
– andlabs
Apr 26 '16 at 15:52
My mistake;linux-headers-generic
also requires Fedora packagelinux-devel
.
– andlabs
Apr 26 '16 at 18:38
1
I think the answer should be updated, since this is the better answer for modern versions of fedora.
– Kirk
Oct 29 '16 at 12:02
2
I had to runsudo dnf group install "C Development Tools and Libraries"
– davidtbernal
Nov 6 '16 at 21:29
For what it's worth, this is a literal equivalent to
build-essential linux-headers-generic
; it only installs what's needed to compile software (like gcc and make) as well as kernel headers. Thanks!– andlabs
Apr 26 '16 at 15:52
For what it's worth, this is a literal equivalent to
build-essential linux-headers-generic
; it only installs what's needed to compile software (like gcc and make) as well as kernel headers. Thanks!– andlabs
Apr 26 '16 at 15:52
My mistake;
linux-headers-generic
also requires Fedora package linux-devel
.– andlabs
Apr 26 '16 at 18:38
My mistake;
linux-headers-generic
also requires Fedora package linux-devel
.– andlabs
Apr 26 '16 at 18:38
1
1
I think the answer should be updated, since this is the better answer for modern versions of fedora.
– Kirk
Oct 29 '16 at 12:02
I think the answer should be updated, since this is the better answer for modern versions of fedora.
– Kirk
Oct 29 '16 at 12:02
2
2
I had to run
sudo dnf group install "C Development Tools and Libraries"
– davidtbernal
Nov 6 '16 at 21:29
I had to run
sudo dnf group install "C Development Tools and Libraries"
– davidtbernal
Nov 6 '16 at 21:29
add a comment |
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
5
This does not actually answer the asked question but is none-the-less useful to know
– Daniel S. Sterling
Aug 27 '13 at 21:52
add a comment |
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
5
This does not actually answer the asked question but is none-the-less useful to know
– Daniel S. Sterling
Aug 27 '13 at 21:52
add a comment |
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
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
answered May 4 '12 at 4:26
ChadversaryChadversary
31926
31926
5
This does not actually answer the asked question but is none-the-less useful to know
– Daniel S. Sterling
Aug 27 '13 at 21:52
add a comment |
5
This does not actually answer the asked question but is none-the-less useful to know
– Daniel S. Sterling
Aug 27 '13 at 21:52
5
5
This does not actually answer the asked question but is none-the-less useful to know
– Daniel S. Sterling
Aug 27 '13 at 21:52
This does not actually answer the asked question but is none-the-less useful to know
– Daniel S. Sterling
Aug 27 '13 at 21:52
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f1338%2fwhat-is-the-fedora-equivalent-of-the-debian-build-essential-package%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown