The Libpipeline package contains a library for manipulating pipelines of subprocesses in a flexible and convenient way.
Prepare Libpipeline for 32-bit compilation:
PKG_CONFIG_PATH=/tools/lib32/pkgconfig \ ./configure --prefix=/usr \ --libdir=/usr/lib32 \ CC="gcc -m32"
The meaning of the configure options:
PKG_CONFIG_PATH
Use pkg-config to obtain the location of the test library metadata built in Section 5.14, “Check-0.9.14”.
Compile the package:
make
To test the results, issue:
make check
Install the package:
make install
Clean up the build directory before moving on to the next platform:
make clean
Prepare Libpipeline for x32 ABI compilation:
PKG_CONFIG_PATH=/tools/libx32/pkgconfig \ ./configure --prefix=/usr \ --libdir=/usr/libx32 \ CC="gcc -mx32"
The meaning of the configure options:
PKG_CONFIG_PATH
Use pkg-config to obtain the location of the test library metadata built in Section 5.14, “Check-0.9.14”.
Compile the package:
make
To test the results, issue:
make check
Install the package:
make install
Clean up the build directory before moving on to the next platform:
make clean
Prepare Libpipeline for 64-bit compilation:
PKG_CONFIG_PATH=/tools/lib/pkgconfig ./configure --prefix=/usr
The meaning of the configure options:
PKG_CONFIG_PATH
Use pkg-config to obtain the location of the test library metadata built in Section 5.14, “Check-0.9.14”.
Compile the package:
make
To test the results, issue:
make check
Install the package:
make install