Changeset 11fbfa9 for scripts/scripts/funcs/glibc-funcs.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/funcs/glibc-funcs.sh
rec749f6 r11fbfa9 25 25 echo " o compiling with gcc 4.x" 26 26 case ${target_glibc_ver} in 27 2.3.[6-9]* | 2.4.* ) ;; 27 2.3.[7-9]* | 2.4.* ) ;; 28 2.3.6 ) 29 apply_patch glibc-20051024-localedef_segfault-1 30 31 case ${TGT_ARCH} in 32 sparc* ) 33 # fix CFLAGS-rtld to remove deprecated sparc compiler options 34 # from sysdeps/unix/sysv/linux/sparc/sparc32/Makefile 35 # ( -mv8 is no longer supported ). Use -mcpu -mtune options 36 # from TGT_CFLAGS (which get passed regardless) 37 echo " - removing deprecated gcc options from sysdeps/unix/sysv/linux/sparc/sparc32/Makefile" 38 file="sysdeps/unix/sysv/linux/sparc/sparc32/Makefile" 39 if [ ! -f ${file}-ORIG ]; then cp -p ${file} ${file}-ORIG ; fi 40 grep -v \\-mv8 ${file}-ORIG > ${file} 41 ;; 42 esac 43 44 ;; 28 45 2.3.5 ) 29 46 # gcc4 support is working in CVS glibc 47 30 48 if [ ! -d ${SRC}/${PKGDIR}/CVS ]; then 31 49 echo " - applying gcc4 fixes" … … 38 56 apply_patch glibc-2.3.5-allow-gcc4-wcstol_l 39 57 fi 58 40 59 case ${TGT_ARCH} in 41 60 sparc* ) … … 118 137 ${fname}-ORIG > ${fname} 119 138 } 139 120 140 case ${TGT_ARCH} in 121 141 m68k* ) … … 125 145 arm* ) apply_patch glibc-arm-ctl_bus_isa ;; 126 146 esac 147 127 148 ;; 128 149 2.4.2[4-9] | 2.4.3* )
Note:
See TracChangeset
for help on using the changeset viewer.