Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion doc/building.html
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,9 @@ <h3 id="linux">Linux</h3>
<p>For apt-based distributions (Debian, Ubuntu, etc), try this:</p>
<pre><code>sudo apt-get install build-essential autoconf</code></pre>
<p>For rpm-based distributions (Fedora, Red Hat, etc), try this:</p>
<pre><code>sudo yum groupinstall &quot;Development Tools&quot;</code></pre>
<pre><code>sudo yum group install development-tools</code></pre>
or
<pre><code>sudo dnf group install development-tools</code></pre>
<p>For Alpine Linux, aside from basic tooling, install the GNU versions
of some programs:</p>
<pre><code>sudo apk add build-base bash grep zip</code></pre>
Expand Down
8 changes: 7 additions & 1 deletion doc/building.md
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,13 @@ sudo apt-get install build-essential autoconf
For rpm-based distributions (Fedora, Red Hat, etc), try this:

```
sudo yum groupinstall "Development Tools"
sudo yum group install development-tools
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

note that it doesn't install the c++ compiler, which is marked as required when using bash configure
I'm wondering if we should not add c-development group too

sudo yum group install development-tools c-development

but it is changing a bit the scope so not sure that we need to do it here

```

or

```
sudo dnf group install development-tools
```

For Alpine Linux, aside from basic tooling, install the GNU versions of some
Expand Down