Changeset e0507947 for scripts


Ignore:
Timestamp:
Mar 10, 2006, 3:00:39 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:
de2a4b2
Parents:
bbbdb98
Message:

r2503@server (orig r1242): ryan | 2006-03-10 02:06:12 -0800

r1292@rei: lfs | 2006-03-07 20:00:23 +1100
gcc build script updates for gcc-4.1.0


Location:
scripts/scripts
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • scripts/scripts/cross-scripts/cross-gcc-final.sh

    rbbbdb98 re0507947  
    1313
    1414LOG="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"
     18libdirname="lib"
     19
     20#set_libdirname
     21#setup_multiarch
     22#
     23#if [ ! "${libdirname}" = "lib" ]; then
     24#   extra_conf="--libdir=${HST_TOOLS}/${libdirname}"
     25#fi
    1526
    1627if [ "Y" = "${MULTIARCH}" ]; then
     
    3950else
    4051   # If we are not multi-arch, disable multilib
    41    extra_conf="--enable-multilib=no"
     52   extra_conf="${extra_conf} --enable-multilib=no"
    4253
    4354   # HACK: this sets abi to n32 with mips... this should be handled
     
    7990cd ${SRC}/${PKGDIR}
    8091case ${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
    8698   ;;
    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
    90106   ;;
    91107esac
  • scripts/scripts/cross-scripts/cross-gcc-shared.sh

    rbbbdb98 re0507947  
    8181cd ${SRC}/${PKGDIR}
    8282case ${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
    8889   ;;
    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
    9297   ;;
    9398esac
  • scripts/scripts/cross-scripts/cross-gcc-static.sh

    rbbbdb98 re0507947  
    7878cd ${SRC}/${PKGDIR}
    7979case ${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
    8586   ;;
    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
    8994   ;;
    9095esac
  • scripts/scripts/native-scripts/native-gcc.sh

    rbbbdb98 re0507947  
    8383      apply_patch gcc-3.4.0-arm-lib1asm
    8484   ;;
    85    4.0.1 | 4.1.* )
    86       apply_patch gcc-4.0.0-remove_standard_startfile_prefix_from_startfile_prefixes-1
    87    ;;
    8885   4.0.0 )
    8986      apply_patch gcc-4.0.0-fix_tree_optimisation_PR21173
    9087      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.* )
    9191      apply_patch gcc-4.0.0-remove_standard_startfile_prefix_from_startfile_prefixes-1
    9292   ;;
  • scripts/scripts/target-scripts/target-gcc.sh

    rbbbdb98 re0507947  
    9191cd ${SRC}/${PKGDIR}
    9292case ${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   ;;
    105108esac
    106109
Note: See TracChangeset for help on using the changeset viewer.