Ignore:
Timestamp:
Feb 21, 2006, 2:07:27 AM (18 years ago)
Author:
Jim Gifford <clfs@…>
Branches:
clfs-1.2, clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
Children:
bc4ea88
Parents:
ec749f6
Message:

r1045@server (orig r1043): ryan | 2006-01-12 00:56:45 -0800

r1079@rei: lfs | 2006-01-12 19:13:09 +1100
Update for glibc-2.3.6
Also add option to skip libgcc_s.so.1 creation (to match cross-lfs book)


File:
1 edited

Legend:

Unmodified
Added
Removed
  • scripts/scripts/build-cross.sh

    rec749f6 r11fbfa9  
    9090}
    9191
    92 test "Y" = "${MULTIARCH}" &&
    93 {
    94    script_list="${script_list}
     92script_list="${script_list}
    9593cross-binutils.sh
    9694cross-glibc-hdrs.sh
    97 cross-gcc-static.sh
     95cross-gcc-static.sh"
     96
     97if [ ! "Y" = "${NO_GCC_EH}" ]; then
     98   if [ "Y" = "${MULTIARCH}" ]; then
     99      script_list="${script_list}
    98100cross-glibc-crtobjs-32.sh
    99101cross-glibc-crtobjs-64.sh
    100102cross-gcc-shared.sh"
     103   else
     104      script_list="${script_list}
     105cross-glibc-crtobjs.sh
     106cross-gcc-shared.sh"
     107   fi
     108fi
    101109
    102    test "N" = "${DEFAULT_64}" &&
    103    {
     110
     111if [ "Y" = "${MULTIARCH}" ]; then
     112   if [ "N" = "${DEFAULT_64}" ]; then
    104113      script_list="${script_list}
    105114cross-glibc-full-64.sh
    106115cross-glibc-full-32.sh
    107116cross-gcc-final.sh"
    108    } || {
     117   else
    109118      script_list="${script_list}
    110119cross-glibc-full-32.sh
    111120cross-glibc-full-64.sh
    112121cross-gcc-final.sh"
    113    }
    114 
    115 } || {
     122   fi
     123else
    116124   script_list="${script_list}
    117 cross-binutils.sh
    118 cross-glibc-hdrs.sh
    119 cross-gcc-static.sh
    120 cross-glibc-crtobjs.sh
    121 cross-gcc-shared.sh
    122125cross-glibc-full.sh
    123126cross-gcc-final.sh"
    124 }
     127fi
    125128
    126129SCRIPTLIST=`echo "${script_list}" | \
Note: See TracChangeset for help on using the changeset viewer.