Ignore:
Timestamp:
02/17/2015 10:18:40 AM (9 years ago)
Author:
Pierre Labastie <pieere@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
413a8ce6
Parents:
fb19ab2c
Message:

Several fixes:

  • introduce a case statement for the workaround on 32 bit machines. Reword the text accordingly.
  • fix parameter <-> option in lame.
  • change a "sect3" to "sect4" in pycairo.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@15518 af4574ff-66df-0310-9fd7-8a98e5e911e0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • multimedia/audioutils/lame.xml

    rfb19ab2c r51c9a2b  
    9191
    9292    <para>
    93       First, if you are using i686, fix a compile problem inroduced by
    94       <application>&gcc-490;</application>:
    95     </para>
    96 
    97 <screen role="nodump"><userinput>sed -i -e '/xmmintrin\.h/d' configure</userinput></screen>
     93      First, fix a compiler error introduced by
     94      <application>&gcc-490;</application> on 32-bit machines:
     95    </para>
     96
     97<screen><userinput>case $(uname -m) in
     98   i?86) sed -i -e '/xmmintrin\.h/d' configure ;;
     99esac</userinput></screen>
    98100
    99101    <para>
     
    121123
    122124    <para>
    123       <option>sed -i -e '/xmmintrin\.h/d' configure</option> : with
    124       gcc-4.9.0, 32-bit i686 builds fail in <filename>xmm_quantize_sub.c</filename>
    125       with an error message <literal>error: inlining failed in call to always_inline
     125      <command>sed -i -e '/xmmintrin\.h/d' configure</command> : with
     126      gcc-4.9.0 and above, the compiler issues an error on 32-bit machines,
     127      while compiling <filename>xmm_quantize_sub.c</filename>. The error
     128      message is: <literal>error: inlining failed in call to always_inline
    126129      '_mm_loadu_ps'</literal>. This sed makes it appear as if
    127130      <filename>xmmintrin.h</filename> is not present. Do not use this on other
    128       versions of gcc, or on x86_64.
    129     </para>
    130 
    131     <para>
    132       <option>--enable-mp3rtp</option>: This switch enables building
    133       of the encode-to-RTP program.
     131      versions of gcc.
     132    </para>
     133
     134    <para>
     135      <parameter>--enable-mp3rtp</parameter>: This switch enables building
     136      the encode-to-RTP program.
    134137    </para>
    135138
Note: See TracChangeset for help on using the changeset viewer.