Changeset e0507947 for scripts/scripts/cross-scripts/cross-gcc-final.sh
- Timestamp:
- Mar 10, 2006, 11:00:39 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:
- de2a4b2
- Parents:
- bbbdb98
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
scripts/scripts/cross-scripts/cross-gcc-final.sh
rbbbdb98 re0507947 13 13 14 14 LOG="gcc-cross-final.log" 15 16 # we cannot assume what the default env for the the host system is, 17 # so we just set libdirname to "lib" 18 libdirname="lib" 19 20 #set_libdirname 21 #setup_multiarch 22 # 23 #if [ ! "${libdirname}" = "lib" ]; then 24 # extra_conf="--libdir=${HST_TOOLS}/${libdirname}" 25 #fi 15 26 16 27 if [ "Y" = "${MULTIARCH}" ]; then … … 39 50 else 40 51 # If we are not multi-arch, disable multilib 41 extra_conf=" --enable-multilib=no"52 extra_conf="${extra_conf} --enable-multilib=no" 42 53 43 54 # HACK: this sets abi to n32 with mips... this should be handled … … 79 90 cd ${SRC}/${PKGDIR} 80 91 case ${target_gcc_ver} in 81 3.4.3 ) apply_patch gcc-3.4.3-linkonce-1 82 apply_patch gcc-3.4.0-arm-bigendian 83 apply_patch gcc-3.4.0-arm-nolibfloat 84 apply_patch gcc-3.4.0-arm-lib1asm 85 apply_patch gcc-3.4.3-clean_exec_and_lib_search_paths_when_cross-1 92 3.4.3 ) 93 apply_patch gcc-3.4.3-linkonce-1 94 apply_patch gcc-3.4.0-arm-bigendian 95 apply_patch gcc-3.4.0-arm-nolibfloat 96 apply_patch gcc-3.4.0-arm-lib1asm 97 apply_patch gcc-3.4.3-clean_exec_and_lib_search_paths_when_cross-1 86 98 ;; 87 4.0.0 ) apply_patch gcc-4.0.0-fix_tree_optimisation_PR21173 88 apply_patch gcc-4.0.0-reload_check_uninitialized_pseudos_PR20973 89 apply_patch gcc-4.0.0-clean_exec_and_lib_search_paths_when_cross-1 99 4.0.0 ) 100 apply_patch gcc-4.0.0-fix_tree_optimisation_PR21173 101 apply_patch gcc-4.0.0-reload_check_uninitialized_pseudos_PR20973 102 apply_patch gcc-4.0.0-clean_exec_and_lib_search_paths_when_cross-1 103 ;; 104 4.0.* | 4.1.* ) 105 apply_patch gcc-4.0.0-clean_exec_and_lib_search_paths_when_cross-1 90 106 ;; 91 107 esac
Note:
See TracChangeset
for help on using the changeset viewer.