Changeset 11fbfa9 for scripts/scripts/build-cross.sh
- Timestamp:
- Feb 21, 2006, 2:07:27 AM (19 years ago)
- Branches:
- clfs-1.2, clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
- Children:
- bc4ea88
- Parents:
- ec749f6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
scripts/scripts/build-cross.sh
rec749f6 r11fbfa9 90 90 } 91 91 92 test "Y" = "${MULTIARCH}" && 93 { 94 script_list="${script_list} 92 script_list="${script_list} 95 93 cross-binutils.sh 96 94 cross-glibc-hdrs.sh 97 cross-gcc-static.sh 95 cross-gcc-static.sh" 96 97 if [ ! "Y" = "${NO_GCC_EH}" ]; then 98 if [ "Y" = "${MULTIARCH}" ]; then 99 script_list="${script_list} 98 100 cross-glibc-crtobjs-32.sh 99 101 cross-glibc-crtobjs-64.sh 100 102 cross-gcc-shared.sh" 103 else 104 script_list="${script_list} 105 cross-glibc-crtobjs.sh 106 cross-gcc-shared.sh" 107 fi 108 fi 101 109 102 test "N" = "${DEFAULT_64}" && 103 { 110 111 if [ "Y" = "${MULTIARCH}" ]; then 112 if [ "N" = "${DEFAULT_64}" ]; then 104 113 script_list="${script_list} 105 114 cross-glibc-full-64.sh 106 115 cross-glibc-full-32.sh 107 116 cross-gcc-final.sh" 108 } || {117 else 109 118 script_list="${script_list} 110 119 cross-glibc-full-32.sh 111 120 cross-glibc-full-64.sh 112 121 cross-gcc-final.sh" 113 } 114 115 } || { 122 fi 123 else 116 124 script_list="${script_list} 117 cross-binutils.sh118 cross-glibc-hdrs.sh119 cross-gcc-static.sh120 cross-glibc-crtobjs.sh121 cross-gcc-shared.sh122 125 cross-glibc-full.sh 123 126 cross-gcc-final.sh" 124 } 127 fi 125 128 126 129 SCRIPTLIST=`echo "${script_list}" | \
Note:
See TracChangeset
for help on using the changeset viewer.