The strace package provides a diagnostic, debugging, and instructional userspace utility.
Install strace by running the following commands:
./configure --prefix=/usr \
--enable-mpers=no &&
make
Now, as the root user:
make install
--enable-mpers=no: By
default, strace is built to support both the m32 and mx32
personalities. This parameter disables that behavior.
--with-libunwind: This
parameter builds strace with libunwind support.
Invoke ./configure
--help for a full list of options.