From daa31a0c3451ceba81737055ff374b241dc98fcc Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN\"" Date: Mon, 28 Apr 2008 07:38:36 +0000 Subject: Building target libraries before the cross-compiler is available is doomed! Move build binutils' target libraries after final gcc. Have a unique list of steps, it's easier to maintain. /trunk/scripts/build/binutils.sh | 8 5 3 0 +++++--- /trunk/scripts/crosstool.sh | 16 2 14 0 ++-------------- /trunk/steps.mk | 29 16 13 0 ++++++++++++++++------------- 3 files changed, 23 insertions(+), 30 deletions(-) --- scripts/crosstool.sh | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) (limited to 'scripts/crosstool.sh') diff --git a/scripts/crosstool.sh b/scripts/crosstool.sh index ec1c2b50..3027f1c3 100755 --- a/scripts/crosstool.sh +++ b/scripts/crosstool.sh @@ -455,20 +455,8 @@ if [ "${CT_ONLY_DOWNLOAD}" != "y" -a "${CT_ONLY_EXTRACT}" != "y" ]; then do_stop=0 prev_step= [ -n "${CT_RESTART}" ] && do_it=0 || do_it=1 - for step in libc_check_config \ - kernel_check_config \ - kernel_headers \ - binutils \ - cc_core_pass_1 \ - libc_headers \ - libc_start_files \ - cc_core_pass_2 \ - libc \ - cc \ - libc_finish \ - tools \ - debug \ - ; do + # CT_STEPS comes from steps.mk! + for step in ${CT_STEPS}; do if [ ${do_it} -eq 0 ]; then if [ "${CT_RESTART}" = "${step}" ]; then CT_DoLoadState "${step}" -- cgit v1.2.3