
Linux From Scratch - Version 7.0
36
--disable-werror
This prevents the build from stopping in the event that there are warnings from the host's compiler.
Continue with compiling the package:
make
Compilation is now complete. Ordinarily we would now run the test suite, but at this early stage the test suite
framework (Tcl, Expect, and DejaGNU) is not yet in place. The benefits of running the tests at this point are minimal
since the programs from this first pass will soon be replaced by those from the second.
If building on x86_64, create a symlink to ensure the sanity of the toolchain:
case $(uname -m) in
x86_64) mkdir -v /tools/lib && ln -sv lib /tools/lib64 ;;
esac
Install the package:
make install
Details on this package are located in Section 6.13.2, “Contents of Binutils.”
Comentarios a estos manuales