A website documenting creating the build root for MidgardOS
| Navigation | ||
|---|---|---|
| « LibPipeline 64-bit | HOME | GNU Make » |
Name: LibPipeline 32-bit
Summary: A C library for constructing command pipelines
License: GPL v3.0 or later
Version: 1.5.8
URL: https://download.savannah.nongnu.org/releases/%{name}/%{name}-%{version}.tar.gz
Average Build Time: 0.1 SBU
Used Install Space: 316 KiB
To configure LibPipeline 32-bit for install into the build root, run the following command:
make distclean
CC="gcc -m32 -march=i686" \
./configure --host=i686-pc-linux-gnu \
--prefix=/usr \
--libdir=/usr/lib \
--libexecdir=/usr/lib \
--docdir=/usr/share/doc/libpipeline-1.5.8 \
--disable-static \
--enable-shared \
--enable-threads=posix \
--enable-socketpair-pipe \
--with-pic=yes \
--with-gnu-ld
To compile LibPipeline 32-bit, run the following command:
make
Finally, to install LibPipeline 32-bit into the build tree, run the following command:
make DESTDIR=$PWD/DESTDIR install
rm -fv DESTDIR/usr/lib/libpipeline.la
cp -Rv DESTDIR/usr/lib/* /usr/lib/
See the contents section of the 64-bit build of LibPipeline for details.
| Navigation | ||
|---|---|---|
| « LibPipeline 64-bit | HOME | GNU Make » |