Details on this package are located in Section 10.55.2, “Contents of File.”
The Procps package contains programs for monitoring processes.
Compile the package:
make CC="gcc ${BUILDN32}" m64=""
This package does not come with a test suite.
Install the package:
make install lib64=lib32
The meaning of the make and install options:
This allows us to compile using our gcc with our options lists in ${BUILDN32} variable.
The Makefile for this package goes to some lengths to build as 64-bit if at all possible. In CLFS we build each library for each available ABI. Overriding the m64 option enables us ignore this completely.
The Makefile also attempts to install into lib64 on multilib, so again we choose to override it.
Details on this package are located in Section 10.55.2, “Contents of File.”