@@ -77,9 +77,9 @@ For the impatient, try this:
77
77
----
78
78
$ git clone https://github.com/LinuxCNC/linuxcnc.git linuxcnc-source-dir
79
79
$ cd linuxcnc-source-dir/src
80
- $ ./debian/configure
81
- $ sudo apt-get build-dep .
82
- $ DEB_BUILD_OPTIONS=nocheck dpkg-buildpackage -uc -B
80
+ $ ./autogen.sh
81
+ $ ./configure --with-realtime=uspace
82
+ $ make
83
83
----
84
84
85
85
That will probably fail! That doesn't make you a bad person,
@@ -240,10 +240,17 @@ delivery to end users, and when building the software for a machine
240
240
that does not have the build environment installed, or that does not have
241
241
internet access.
242
242
243
- To build packages is primarily useful when packaging the software for delivery to end users.
244
- Developers among themselves exchange only the source code, likely supported by the LinuxCNC GitHub repository referenced below.
245
- Also, when building the software for a machine that doesn't have the build environment installed,
246
- or that doesn't have internet access, one happily accepts a prebuilt package.
243
+ For the impatient, try this:
244
+
245
+ [source,console]
246
+ ----
247
+ $ sudo apt-get install build-essential
248
+ $ git clone https://github.com/LinuxCNC/linuxcnc.git linuxcnc-source-dir
249
+ $ cd linuxcnc-source-dir/src
250
+ $ ./debian/configure
251
+ $ sudo apt-get build-dep .
252
+ $ DEB_BUILD_OPTIONS=nocheck dpkg-buildpackage -uc -B
253
+ ----
247
254
248
255
Building Debian packages is performed with the `dpkg-buildpackage` tool that is
249
256
provided by the `dpkg-dev` package. Its execution comes with a series of prerequisites
0 commit comments