Changeset e0507947
- Timestamp:
- Mar 10, 2006, 3: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
- Location:
- scripts/scripts
- Files:
-
- 5 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 -
scripts/scripts/cross-scripts/cross-gcc-shared.sh
rbbbdb98 re0507947 81 81 cd ${SRC}/${PKGDIR} 82 82 case ${target_gcc_ver} in 83 3.4.3 ) apply_patch gcc-3.4.3-linkonce-1 84 apply_patch gcc-3.4.0-arm-bigendian 85 apply_patch gcc-3.4.0-arm-nolibfloat 86 apply_patch gcc-3.4.0-arm-lib1asm 87 apply_patch gcc-3.4.3-clean_exec_and_lib_search_paths_when_cross-1 83 3.4.3 ) 84 apply_patch gcc-3.4.3-linkonce-1 85 apply_patch gcc-3.4.0-arm-bigendian 86 apply_patch gcc-3.4.0-arm-nolibfloat 87 apply_patch gcc-3.4.0-arm-lib1asm 88 apply_patch gcc-3.4.3-clean_exec_and_lib_search_paths_when_cross-1 88 89 ;; 89 4.0.0 ) apply_patch gcc-4.0.0-fix_tree_optimisation_PR21173 90 apply_patch gcc-4.0.0-reload_check_uninitialized_pseudos_PR20973 91 apply_patch gcc-4.0.0-clean_exec_and_lib_search_paths_when_cross-1 90 4.0.0 ) 91 apply_patch gcc-4.0.0-fix_tree_optimisation_PR21173 92 apply_patch gcc-4.0.0-reload_check_uninitialized_pseudos_PR20973 93 apply_patch gcc-4.0.0-clean_exec_and_lib_search_paths_when_cross-1 94 ;; 95 4.0.* | 4.1.* ) 96 apply_patch gcc-4.0.0-clean_exec_and_lib_search_paths_when_cross-1 92 97 ;; 93 98 esac -
scripts/scripts/cross-scripts/cross-gcc-static.sh
rbbbdb98 re0507947 78 78 cd ${SRC}/${PKGDIR} 79 79 case ${target_gcc_ver} in 80 3.4.3 ) apply_patch gcc-3.4.3-linkonce-1 81 apply_patch gcc-3.4.0-arm-bigendian 82 apply_patch gcc-3.4.0-arm-nolibfloat 83 apply_patch gcc-3.4.0-arm-lib1asm 84 apply_patch gcc-3.4.3-clean_exec_and_lib_search_paths_when_cross-1 80 3.4.3 ) 81 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 85 86 ;; 86 4.0.0 ) apply_patch gcc-4.0.0-fix_tree_optimisation_PR21173 87 apply_patch gcc-4.0.0-reload_check_uninitialized_pseudos_PR20973 88 apply_patch gcc-4.0.0-clean_exec_and_lib_search_paths_when_cross-1 87 4.0.0 ) 88 apply_patch gcc-4.0.0-fix_tree_optimisation_PR21173 89 apply_patch gcc-4.0.0-reload_check_uninitialized_pseudos_PR20973 90 apply_patch gcc-4.0.0-clean_exec_and_lib_search_paths_when_cross-1 91 ;; 92 4.0.* | 4.1.* ) 93 apply_patch gcc-4.0.0-clean_exec_and_lib_search_paths_when_cross-1 89 94 ;; 90 95 esac -
scripts/scripts/native-scripts/native-gcc.sh
rbbbdb98 re0507947 83 83 apply_patch gcc-3.4.0-arm-lib1asm 84 84 ;; 85 4.0.1 | 4.1.* )86 apply_patch gcc-4.0.0-remove_standard_startfile_prefix_from_startfile_prefixes-187 ;;88 85 4.0.0 ) 89 86 apply_patch gcc-4.0.0-fix_tree_optimisation_PR21173 90 87 apply_patch gcc-4.0.0-reload_check_uninitialized_pseudos_PR20973 88 apply_patch gcc-4.0.0-remove_standard_startfile_prefix_from_startfile_prefixes-1 89 ;; 90 4.0.* | 4.1.* ) 91 91 apply_patch gcc-4.0.0-remove_standard_startfile_prefix_from_startfile_prefixes-1 92 92 ;; -
scripts/scripts/target-scripts/target-gcc.sh
rbbbdb98 re0507947 91 91 cd ${SRC}/${PKGDIR} 92 92 case ${target_gcc_ver} in 93 3.4.3 ) 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 98 ;; 99 4.0.0 ) apply_patch gcc-4.0.0-fix_tree_optimisation_PR21173 100 apply_patch gcc-4.0.0-reload_check_uninitialized_pseudos_PR20973 101 apply_patch gcc-4.0.0-clean_exec_and_lib_search_paths_when_cross-1 102 ;; 103 4.0.* ) apply_patch gcc-4.0.0-clean_exec_and_lib_search_paths_when_cross-1 ;; 104 4.1.* ) apply_patch gcc-4.0.0-clean_exec_and_lib_search_paths_when_cross-1 ;; 93 3.4.3 ) 94 apply_patch gcc-3.4.3-linkonce-1 95 apply_patch gcc-3.4.0-arm-bigendian 96 apply_patch gcc-3.4.0-arm-nolibfloat 97 apply_patch gcc-3.4.0-arm-lib1asm 98 apply_patch gcc-3.4.3-clean_exec_and_lib_search_paths_when_cross-1 99 ;; 100 4.0.0 ) 101 apply_patch gcc-4.0.0-fix_tree_optimisation_PR21173 102 apply_patch gcc-4.0.0-reload_check_uninitialized_pseudos_PR20973 103 apply_patch gcc-4.0.0-clean_exec_and_lib_search_paths_when_cross-1 104 ;; 105 4.0.* | 4.1.* ) 106 apply_patch gcc-4.0.0-clean_exec_and_lib_search_paths_when_cross-1 107 ;; 105 108 esac 106 109
Note:
See TracChangeset
for help on using the changeset viewer.