Opened 10 years ago
Closed 10 years ago
#1091 closed enhancement (fixed)
One configure option per line
| Reported by: | William Harrington | Owned by: | |
|---|---|---|---|
| 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)
Change History (4)
comment:1 by , 10 years ago
| Priority: | major → trivial |
|---|
comment:3 by , 10 years ago
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
Fixed in commit b27081c430bdbdf7e4c063f5208e3385aa514f43 and c7477f8eb75041ac89c981452ebccdf354169139.
Note:
See TracTickets
for help on using tickets.

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-zlibEnds 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-zlibThat is the extreme case using GCC static