Opened 9 years ago

Closed 9 years ago

#1091 closed enhancement (fixed)

One configure option per line

Reported by: William Harrington Owned by: clfs-commits@…
Priority: trivial Milestone: CLFS Standard 3.1.0
Component: BOOK Version: CLFS Standard GIT
Keywords: Cc: berzerkula@…, jonathan@…, chris@…, cross-lfs@…

Description

It's easier to spot errors when we have one line per configure option.

Attachments (1)

cross-tools.patch (23.4 KB ) - added by chris@… 9 years ago.
Updates to cross-tools packages

Download all attachments as: .zip

Change History (4)

comment:1 by William Harrington, 9 years ago

Priority: majortrivial

comment:2 by William Harrington, 9 years ago

AR=ar LDFLAGS="-Wl,-rpath,/cross-tools/lib" \
    ../gcc-5.2.0/configure --prefix=/cross-tools \
    --build=${CLFS_HOST} --target=${CLFS_TARGET} --host=${CLFS_HOST} \
    --with-sysroot=${CLFS} --with-local-prefix=/tools \
    --with-native-system-header-dir=/tools/include --disable-nls \
    --disable-static --enable-languages=c,c++ --disable-multilib \
    --with-mpc=/cross-tools --with-mpfr=/cross-tools --with-gmp=/cross-tools \
    --with-isl=/cross-tools --with-system-zlib

Ends up being

AR=ar LDFLAGS="-Wl,-rpath,/cross-tools/lib" \
    ../gcc-5.2.0/configure \
        --prefix=/cross-tools \
       --build=${CLFS_HOST} \
       --target=${CLFS_TARGET} \
       --host=${CLFS_HOST}
       --with-sysroot=${CLFS} \
       --with-local-prefix=/tools \
       --with-native-system-header-dir=/tools/include \
       --disable-nls \
       --disable-static \
       --enable-languages=c,c++ \
       --disable-multilib \
       --with-mpc=/cross-tools \
       --with-mpfr=/cross-tools \
       --with-gmp=/cross-tools \
       --with-isl=/cross-tools \
       --with-system-zlib

That is the extreme case using GCC static

Version 0, edited 9 years ago by William Harrington (next)

by chris@…, 9 years ago

Attachment: cross-tools.patch added

Updates to cross-tools packages

comment:3 by chris@…, 9 years ago

Resolution: fixed
Status: newclosed
Note: See TracTickets for help on using tickets.