akhiezer
2017-04-30 09:15:54 UTC
clfs-embedded:
master & (abradfa) 2017.04-fixes branches:
cross-tools/..../gcc-final has build/host/target config options in non-alphab order:
====
http://clfs.org/view/clfs-embedded/x86/cross-tools/gcc-final.html
https://github.com/bradfa/clfs-embedded/blob/2017.04-fixes/BOOK/cross-tools/x86/gcc-final.xml
==
--prefix=${CLFS}/cross-tools \
--build=${CLFS_HOST} \
--target=${CLFS_TARGET} \
--host=${CLFS_HOST} \
--with-sysroot=${CLFS}/cross-tools/${CLFS_TARGET} \
.
.
====
Whereas corresp gcc-sttc has them in alphab order:
====
http://clfs.org/view/clfs-embedded/x86/cross-tools/gcc-static.html
https://github.com/bradfa/clfs-embedded/blob/2017.04-fixes/BOOK/cross-tools/x86/gcc-static.xml
==
--prefix=${CLFS}/cross-tools \
--build=${CLFS_HOST} \
--host=${CLFS_HOST} \
--target=${CLFS_TARGET} \
--with-sysroot=${CLFS}/cross-tools/${CLFS_TARGET} \
.
.
====
In the usual way, is maybe better to keep the ordering consistent.
akh
--
master & (abradfa) 2017.04-fixes branches:
cross-tools/..../gcc-final has build/host/target config options in non-alphab order:
====
http://clfs.org/view/clfs-embedded/x86/cross-tools/gcc-final.html
https://github.com/bradfa/clfs-embedded/blob/2017.04-fixes/BOOK/cross-tools/x86/gcc-final.xml
==
--prefix=${CLFS}/cross-tools \
--build=${CLFS_HOST} \
--target=${CLFS_TARGET} \
--host=${CLFS_HOST} \
--with-sysroot=${CLFS}/cross-tools/${CLFS_TARGET} \
.
.
====
Whereas corresp gcc-sttc has them in alphab order:
====
http://clfs.org/view/clfs-embedded/x86/cross-tools/gcc-static.html
https://github.com/bradfa/clfs-embedded/blob/2017.04-fixes/BOOK/cross-tools/x86/gcc-static.xml
==
--prefix=${CLFS}/cross-tools \
--build=${CLFS_HOST} \
--host=${CLFS_HOST} \
--target=${CLFS_TARGET} \
--with-sysroot=${CLFS}/cross-tools/${CLFS_TARGET} \
.
.
====
In the usual way, is maybe better to keep the ordering consistent.
akh
--