Skip to content

Commit 96fdf71

Browse files
committed
Make build instructions more explicit.
1 parent 909b703 commit 96fdf71

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed

README.md

+17-15
Original file line numberDiff line numberDiff line change
@@ -117,35 +117,37 @@ For more details see the **User Guide** in the [**doc** directory](https://githu
117117

118118
***Note that this has changed for version 1.6. There are now a couple extra steps.***
119119

120-
A standard operating system install will probably include these already:
121120

122-
- git
123-
- gcc or clang compiler
124-
- make
121+
First you will need to install some software development packages using different commands depending on your flavor of Linux.
122+
In most cases, the first few will already be there and the package installer will tell you that installation is not necessary.
125123

126-
You will probably need to install additional packages:
127-
128-
On Debian / Ubuntu / Raspbian:
124+
On Debian / Ubuntu / Raspbian / Raspberry Pi OS:
129125

126+
sudo apt-get install git
127+
sudo apt-get install gcc
128+
sudo apt-get install g++
129+
sudo apt-get install make
130130
sudo apt-get install cmake
131131
sudo apt-get install libasound2-dev
132132
sudo apt-get install libudev-dev
133133

134-
Or on Red Hat / Fedora / Centos:
134+
Or on Red Hat / Fedora / CentOS:
135+
136+
sudo yum install git
137+
sudo yum install gcc
138+
sudo yum install gcc-c++
139+
sudo yum install make
140+
sudo yum install alsa-lib-devel
141+
sudo yum install libudev-devel
135142

136143
CentOS 6 & 7 currently have cmake 2.8 but we need 3.1 or later.
137-
First you need to enable the EPEL repository. Add a symlink if you want to type cmake rather than cmake3.
144+
First you need to enable the EPEL repository. Add a symlink if you don't already have the older version and want to type cmake rather than cmake3.
138145

139-
sudo yum install epel-release
146+
sudo yum install epel-release
140147
sudo rpm -e cmake
141148
sudo yum install cmake3
142149
sudo ln -s /usr/bin/cmake3 /usr/bin/cmake
143150

144-
Continue with the other required packages:
145-
146-
sudo yum install alsa-lib-devel
147-
sudo yum install libudev-devel
148-
149151
Then on any flavor of Linux:
150152

151153
cd ~

0 commit comments

Comments
 (0)