binutils-inst.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
  2. <sect2>
  3. <title>Installation of Binutils</title>
  4. <para>This package is known to behave badly when you have changed its default
  5. optimization flags (including the -march and -mcpu options). Therefore, if
  6. you have defined any environment variables that override default
  7. optimizations, such as CFLAGS and CXXFLAGS, we recommend unsetting or
  8. modifying them when building binutils.</para>
  9. <para>It is recommended by the Binutils installation documentation to build
  10. Binutils outside of the source directory in a dedicated directory:</para>
  11. <para><screen><userinput>mkdir ../binutils-build
  12. cd ../binutils-build</userinput></screen></para>
  13. <para>Next, prepare Binutils to be compiled:</para>
  14. <para><screen><userinput>../binutils-&binutils-version;/configure --prefix=$LFS/static --disable-nls</userinput></screen></para>
  15. <para>The meaning of the (new) configure switches are:</para>
  16. <itemizedlist>
  17. <listitem><para><userinput>--disable-nls:</userinput> This option disables
  18. internationalization (also known as i18n). We don't need this for our
  19. static programs and nls often causes problems when you're linking
  20. statically.</para></listitem>
  21. </itemizedlist>
  22. <para>Continue with compiling the package:</para>
  23. <para><screen><userinput>make LDFLAGS="-all-static"</userinput></screen></para>
  24. <para>The meaning of the make option is:</para>
  25. <itemizedlist>
  26. <listitem><para><userinput>make LDFLAGS="-all-static":</userinput> This is
  27. how we tell Binutils that all programs should be statically linked. Setting
  28. the <emphasis>LDFLAGS</emphasis> variable is the common way of specifying we
  29. want a static link to take place, however, its value and the way it is set
  30. is not always the same. You'll see with the remaining packages that there
  31. are different ways of setting up the <emphasis>LDFLAGS</emphasis>
  32. variable.</para></listitem>
  33. </itemizedlist>
  34. <para>And finish off installing the package:</para>
  35. <para><screen><userinput>make install</userinput></screen></para>
  36. </sect2>