diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-01-04 14:38:41 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-01-04 14:38:41 +0000 |
commit | f2d6a841359b6ce1c08a3eecc8911e0273af0116 (patch) | |
tree | f0501e1540b76c187ce6e5579e984d4789f474b2 /scripts/build/libc | |
parent | 7593ffbf36d682d1358722ca16c939366bf620cb (diff) | |
download | crosstool-ng-f2d6a841359b6ce1c08a3eecc8911e0273af0116.tar.gz crosstool-ng-f2d6a841359b6ce1c08a3eecc8911e0273af0116.tar.bz2 crosstool-ng-f2d6a841359b6ce1c08a3eecc8911e0273af0116.zip |
Remove support for gcc-2.95.3, it has never ever been tested.
/trunk/config/cc/gcc.in | 6 0 6 0 ------
/trunk/scripts/build/libc/glibc.sh | 4 0 4 0 ----
/trunk/scripts/build/libc/uClibc.sh | 4 0 4 0 ----
3 files changed, 14 deletions(-)
Diffstat (limited to 'scripts/build/libc')
-rw-r--r-- | scripts/build/libc/glibc.sh | 4 | ||||
-rw-r--r-- | scripts/build/libc/uClibc.sh | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/scripts/build/libc/glibc.sh b/scripts/build/libc/glibc.sh index a39c3c36..1c7a2d5b 100644 --- a/scripts/build/libc/glibc.sh +++ b/scripts/build/libc/glibc.sh @@ -79,10 +79,6 @@ do_libc_check_config() { # This function installs the glibc headers needed to build the core compiler do_libc_headers() { - # Only need to install bootstrap glibc headers for gcc-3.0 and above? Or maybe just gcc-3.3 and above? - # See also http://gcc.gnu.org/PR8180, which complains about the need for this step. - grep -q 'gcc-[34]' "${CT_SRC_DIR}/${CT_CC_FILE}/ChangeLog" 2>/dev/null || return 0 - CT_DoStep INFO "Installing C library headers" mkdir -p "${CT_BUILD_DIR}/build-libc-headers" diff --git a/scripts/build/libc/uClibc.sh b/scripts/build/libc/uClibc.sh index 6b46d302..f81236c2 100644 --- a/scripts/build/libc/uClibc.sh +++ b/scripts/build/libc/uClibc.sh @@ -45,10 +45,6 @@ do_libc_check_config() { # This functions installs uClibc's headers do_libc_headers() { - # Only need to install bootstrap uClibc headers for gcc-3.0 and above? Or maybe just gcc-3.3 and above? - # See also http://gcc.gnu.org/PR8180, which complains about the need for this step. - grep -q 'gcc-[34]' "${CT_SRC_DIR}/${CT_CC_FILE}/ChangeLog" 2>/dev/null || return 0 - CT_DoStep INFO "Installing C library headers" mkdir -p "${CT_BUILD_DIR}/build-libc-headers" |