setting-environment.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <sect1 id="ch05-settingenviron">
  2. <title>Setting up the environment</title>
  3. <?dbhtml filename="settingenviron.html" dir="chapter05"?>
  4. <para>While logged in as user <emphasis>lfs</emphasis>, issue the
  5. following commands to set up a good work environment:</para>
  6. <para><screen><userinput>cat &gt; ~/.bash_profile &lt;&lt; "EOF"
  7. set +h
  8. umask 022
  9. LFS=/mnt/lfs
  10. LC_ALL=POSIX
  11. PATH=/stage1/bin:$PATH
  12. export LFS LC_ALL PATH
  13. EOF
  14. source ~/.bash_profile</userinput></screen></para>
  15. <para><userinput>set +h</userinput> turns off Bash's hash function. Hash
  16. normally is a useful feature where Bash uses a hash table to remember the
  17. full pathnames of executable files to avoid multiple `PATH' searches.
  18. However, we'd like the new tools to become available as soon as they are
  19. installed. By switching off the hash function, our "interactive" commands
  20. (make, patch, sed, cp and so forth) will always use the newest available
  21. during the build process.</para>
  22. <para>This profile sets the umask to 022, so newly created files and
  23. directories will have the correct permissions. To be more specific, only
  24. the file owner will have write permission to new files and directories.
  25. Other users of the system will be have read permission, and executable
  26. permission to directories. It is advisable to keep this setting throughout
  27. your LFS installation.</para>
  28. <para>The LFS variable should of course be set to the mount point you
  29. chose.</para>
  30. <para>The LC_ALL variable controls the localization of certain programs,
  31. making their messages follow the conventions of a specified country. If your
  32. host system uses a version of <emphasis>glibc</emphasis> older than 2.2.4,
  33. having LC_ALL set to something other than "C" or "POSIX" during this chapter
  34. may cause trouble if you exit the chroot environment and wish to return later.
  35. By setting LC_ALL to "POSIX" ("C" is an alias for "POSIX") we ensure that
  36. everything will work as expected in the chroot environment.</para>
  37. <para>LDFLAGS is a variable we set in order to prevent debugging symbols from
  38. being compiled into our static packages. By omitting these symbols during
  39. the linking stage of compilation, we save hard drive space and decrease our
  40. build time.</para>
  41. <para>We are now prepared to begin building the temporary tools which will
  42. support us in later chapters.</para>
  43. </sect1>