Changeset fddcf74


Ignore:
Timestamp:
Jul 6, 2009, 2:44:34 PM (15 years ago)
Author:
Joe Ciccone <jciccone@…>
Branches:
clfs-1.2, clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
Children:
57e2e06
Parents:
4ee8905
Message:

Fix compilation errors with ppl in the final system on multilib by dropping the --with-gmp args. GMP is a required dep, if it doesn't fine it, it will error. Passing the --with-gmp-prefix args cause it to look at /usr/lib/libgmp.so only. Which will cause n32 and 64 bit multilib builds to fail.

Location:
BOOK/final-system
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • BOOK/final-system/common/ppl.xml

    r4ee8905 rfddcf74  
    3333    CXX="g++ -isystem /usr/include" \
    3434    LDFLAGS="-Wl,-rpath-link,/lib" \
    35     ./configure --prefix=/usr --enable-shared --with-libgmp-prefix=/usr \
    36     --with-libgmpxx-prefix=/usr</userinput></screen>
     35    ./configure --prefix=/usr --enable-shared</userinput></screen>
    3736
    3837    <para os="c">Compile the package:</para>
  • BOOK/final-system/multilib/ppl-64bit.xml

    r4ee8905 rfddcf74  
    4040    LDFLAGS="-Wl,-rpath-link,/lib64 ${BUILD64}" \
    4141    ./configure --prefix=/usr \
    42     --libdir=/usr/lib64 --enable-shared \
    43     --with-libgmp-prefix=/usr --with-libgmpxx-prefix=/usr</userinput></screen>
     42    --libdir=/usr/lib64 --enable-shared</userinput></screen>
    4443
    4544    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
  • BOOK/final-system/multilib/ppl-n32.xml

    r4ee8905 rfddcf74  
    4141    LDFLAGS="-Wl,-rpath-link,/lib32 ${BUILDN32}" \
    4242    ./configure --prefix=/usr \
    43     --libdir=/usr/lib32 --enable-shared --with-libgmp-prefix=/usr \
    44     --with-libgmpxx-prefix=/usr</userinput></screen>
     43    --libdir=/usr/lib32 --enable-shared</userinput></screen>
    4544
    4645    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
  • BOOK/final-system/multilib/ppl.xml

    r4ee8905 rfddcf74  
    4040    CXX="g++ -isystem /usr/include ${BUILD32}" \
    4141    LDFLAGS="-Wl,-rpath-link,/lib ${BUILD32}" \
    42     ./configure --prefix=/usr --host=${CLFS_TARGET32} --enable-shared \
    43     --with-libgmp-prefix=/usr --with-libgmpxx-prefix=/usr</userinput></screen>
     42    ./configure --prefix=/usr --host=${CLFS_TARGET32} \
     43    --enable-shared</userinput></screen>
    4444
    4545    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
Note: See TracChangeset for help on using the changeset viewer.