binutils-inst.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <sect2>
  2. <title>Installation of Binutils</title>
  3. <para>This package is known to behave badly when you have changed its default
  4. optimization flags (including the -march and -mcpu options). Binutils is
  5. best left alone. Therefore, if you have defined any environment variables
  6. that override default optimizations, such as CFLAGS and CXXFLAGS, we
  7. recommend unsetting or modifying them when building binutils. You have been
  8. warned.</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>We'll finish off by compiling and installing the package:</para>
  23. <para><screen><userinput>make LDFLAGS="-all-static" &amp;&amp;
  24. make install</userinput></screen></para>
  25. <para><emphasis>make LDFLAGS="-all-static"</emphasis> is how we tell
  26. Binutils that all programs should be statically linked. Setting the
  27. <emphasis>LDFLAGS</emphasis> variable is the common way of specifying we
  28. want a static link to take place, however, its value and the way it is set
  29. is not always the same. You'll see with the remaining packages that there
  30. are different ways of setting up the <emphasis>LDFLAGS</emphasis>
  31. variable.</para>
  32. </sect2>