diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2015-05-16 01:57:52 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2015-05-16 01:57:52 +0000 |
commit | 13e03d66f145780265925b9ac64a068957beed2c (patch) | |
tree | 1631d5c3ed10a8b27eb9a79529472aab02d8150f /chapter06/gcc.xml | |
parent | 55183560bf396eadd84c0cd03de9a0f624edac79 (diff) |
Add a patch from upstream to fix some libgomp (gcc) problems
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10912 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/gcc.xml')
-rw-r--r-- | chapter06/gcc.xml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/chapter06/gcc.xml b/chapter06/gcc.xml index 7616b30ac..1ecf0a48a 100644 --- a/chapter06/gcc.xml +++ b/chapter06/gcc.xml @@ -41,6 +41,10 @@ <sect2 role="installation"> <title>Installation of GCC</title> + <para>First fix some problems with the libgomp library:</para> + +<screen><userinput remap="pre">patch -Np1 -i ../&gcc-upstream-patch;</userinput></screen> + <para>The GCC documentation recommends building GCC outside of the source directory in a dedicated build directory:</para> @@ -112,7 +116,7 @@ cd ../gcc-build</userinput></screen> <para>A few unexpected failures cannot always be avoided. The GCC developers are usually aware of these issues, but have not resolved them yet. - In particular, four tests in the libgomp test suite are known to fail. + In particular, one test in the libgomp test suite is known to fail. Unless the test results are vastly different from those at the above URL, it is safe to continue.</para> |