mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-06-19 03:39:20 +01:00
Use GCC option -ffile-prefix-map to simplify chapter 6 Glibc instruction
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11560 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
parent
93058448b3
commit
797ada6224
@ -43,6 +43,16 @@
|
|||||||
appropriate for the entry or if needed the entire day's listitem.
|
appropriate for the entry or if needed the entire day's listitem.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>2019-03-25</para>
|
||||||
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>[xry111] - Use -ffile-prefix-map instead of -isystem and
|
||||||
|
symlinks in the Glibc build to simplify the instruction.</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>2019-03-13</para>
|
<para>2019-03-13</para>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
|
@ -60,31 +60,29 @@
|
|||||||
<para>Fix a minor security issue with glob functions:</para>
|
<para>Fix a minor security issue with glob functions:</para>
|
||||||
|
|
||||||
<screen><userinput remap="pre">patch -Np1 -i ../&glibc-glob-patch;</userinput></screen>
|
<screen><userinput remap="pre">patch -Np1 -i ../&glibc-glob-patch;</userinput></screen>
|
||||||
-->
|
--><!--
|
||||||
<para>First create a compatibility symlink to avoid references to /tools in
|
<para>First create a compatibility symlink to avoid references to /tools in
|
||||||
our final glibc:</para>
|
our final glibc:</para>
|
||||||
|
|
||||||
<screen><userinput remap="pre">ln -sfv /tools/lib/gcc /usr/lib</userinput></screen>
|
<screen><userinput remap="pre">ln -sfv /tools/lib/gcc /usr/lib</userinput></screen>
|
||||||
|
-->
|
||||||
<para>Determine the GCC include directory and create a symlink for LSB
|
<para>Create a symlink for LSB
|
||||||
compliance. Additionally, for x86_64, create a compatibility symlink
|
compliance. Additionally, for x86_64, create a compatibility symlink
|
||||||
required for the dynamic loader to function correctly:</para>
|
required for the dynamic loader to function correctly:</para>
|
||||||
|
|
||||||
<screen><userinput remap="pre">case $(uname -m) in
|
<screen><userinput remap="pre">case $(uname -m) in
|
||||||
i?86) GCC_INCDIR=/usr/lib/gcc/$(uname -m)-pc-linux-gnu/&gcc-version;/include
|
i?86) ln -sfv ld-linux.so.2 /lib/ld-lsb.so.3
|
||||||
ln -sfv ld-linux.so.2 /lib/ld-lsb.so.3
|
|
||||||
;;
|
;;
|
||||||
x86_64) GCC_INCDIR=/usr/lib/gcc/x86_64-pc-linux-gnu/&gcc-version;/include
|
x86_64) ln -sfv ../lib/ld-linux-x86-64.so.2 /lib64
|
||||||
ln -sfv ../lib/ld-linux-x86-64.so.2 /lib64
|
|
||||||
ln -sfv ../lib/ld-linux-x86-64.so.2 /lib64/ld-lsb-x86-64.so.3
|
ln -sfv ../lib/ld-linux-x86-64.so.2 /lib64/ld-lsb-x86-64.so.3
|
||||||
;;
|
;;
|
||||||
esac</userinput></screen>
|
esac</userinput></screen>
|
||||||
|
<!--
|
||||||
<para>Remove a file that may be left over from a previous build attempt:
|
<para>Remove a file that may be left over from a previous build attempt:
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<screen><userinput remap="pre">rm -f /usr/include/limits.h</userinput></screen>
|
<screen><userinput remap="pre">rm -f /usr/include/limits.h</userinput></screen>
|
||||||
|
-->
|
||||||
<para>The Glibc documentation recommends building Glibc
|
<para>The Glibc documentation recommends building Glibc
|
||||||
in a dedicated build directory:</para>
|
in a dedicated build directory:</para>
|
||||||
|
|
||||||
@ -93,22 +91,22 @@ cd build</userinput></screen>
|
|||||||
|
|
||||||
<para>Prepare Glibc for compilation:</para>
|
<para>Prepare Glibc for compilation:</para>
|
||||||
|
|
||||||
<screen><userinput remap="configure">CC="gcc -isystem $GCC_INCDIR -isystem /usr/include" \
|
<screen><userinput remap="configure">CC="gcc -ffile-prefix-map=/tools=/usr" \
|
||||||
../configure --prefix=/usr \
|
../configure --prefix=/usr \
|
||||||
--disable-werror \
|
--disable-werror \
|
||||||
--enable-kernel=&min-kernel; \
|
--enable-kernel=&min-kernel; \
|
||||||
--enable-stack-protector=strong \
|
--enable-stack-protector=strong \
|
||||||
libc_cv_slibdir=/lib
|
libc_cv_slibdir=/lib</userinput></screen>
|
||||||
unset GCC_INCDIR</userinput></screen>
|
|
||||||
|
|
||||||
<variablelist>
|
<variablelist>
|
||||||
<title>The meaning of the options and new configure parameters:</title>
|
<title>The meaning of the options and new configure parameters:</title>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><parameter>CC="gcc -isystem $GCC_INCDIR -isystem /usr/include"</parameter></term>
|
<term><parameter>CC="gcc -ffile-prefix-map=/tools=/usr"</parameter></term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Setting the location of both gcc and system include directories
|
<para>Make GCC record any references to files in /tools in result
|
||||||
avoids introduction of invalid paths in debugging symbols.</para>
|
of the compilation as if the files resided in /usr. This avoids
|
||||||
|
introduction of invalid paths in debugging symbols.</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user