瀏覽代碼

Added optional instructions that explains how to add
/etc/ld.so.conf.d as an include directory for the loader

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9496 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Bruce Dubbs 14 年之前
父節點
當前提交
50f648b0ee
共有 2 個文件被更改,包括 18 次插入3 次删除
  1. 5 0
      chapter01/changelog.xml
  2. 13 3
      chapter06/glibc.xml

+ 5 - 0
chapter01/changelog.xml

@@ -39,6 +39,11 @@
     <listitem>
       <para>2011-04-12</para>
       <itemizedlist>
+        <listitem>
+          <para>[bdubbs] - Added optional instructions to allow a user
+          to use an include directory to supplement ld.so.conf.  Fixes
+          <ulink url="&lfs-ticket-root;2843">#2843</ulink>.</para>
+        </listitem>
         <listitem>
           <para>[bdubbs] - Rewrote General Compilation Instructions using
           better docbook structures and clarified a couple of points. Fixes

+ 13 - 3
chapter06/glibc.xml

@@ -370,13 +370,23 @@ EOF</userinput></screen>
 
 <screen><userinput>cat &gt; /etc/ld.so.conf &lt;&lt; "EOF"
 <literal># Begin /etc/ld.so.conf
-
 /usr/local/lib
 /opt/lib
-
-# End /etc/ld.so.conf</literal>
+</literal>
 EOF</userinput></screen>
 
+  <para>If desired, the dynamic loader can also search a directory and
+  include the contents of files found there.  Generally the files in 
+  this include directory are one line specifying the desired library path.
+  To add this capability run the following commands:</para>
+
+<screen role="nodump"><userinput>cat &gt;&gt; /etc/ld.so.conf &lt;&lt; "EOF"
+<literal># Add an include directory
+include /etc/ld.so.conf.d/*.conf
+</literal>
+EOF
+mkdir /etc/ld.so.conf.d</userinput></screen>
+
   </sect2>
 
   <sect2 id="contents-glibc" role="content">