mirror of
https://git.yoctoproject.org/poky
synced 2026-09-15 15:49:32 +02:00
gcc: Use 4.7.2 release tarball
This avoids the SVN or git fetcher issues for gcc and the tar is mirrored around the world so it will not be slow Fixes [YOCTO #2908] (From OE-Core rev: 5e03d1e83d0536a2fc69a88d3e5407108836203f) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -8,10 +8,7 @@ PR = "r13"
|
||||
# on branch then PV should be incremented to 4.7.2+svnr${SRCPV}
|
||||
# to reflect that change
|
||||
|
||||
# using 4.7.1.0 for upgrade path when we move past 4.7.2 release
|
||||
# then we should drop the last 0 as well.
|
||||
|
||||
PV = "4.7.1.0+git${SRCPV}"
|
||||
PV = "4.7.2"
|
||||
|
||||
# BINV should be incremented after updating to a revision
|
||||
# after a minor gcc release (e.g. 4.7.1 or 4.7.2) has been made
|
||||
@@ -21,8 +18,6 @@ PV = "4.7.1.0+git${SRCPV}"
|
||||
|
||||
BINV = "4.7.2"
|
||||
|
||||
SRCREV = "d07e24f4ab59f264d68d21838795349faab5dede"
|
||||
BRANCH = "gcc-4_7-branch"
|
||||
FILESPATH = "${@base_set_filespath([ '${FILE_DIRNAME}/gcc-4.7' ], d)}"
|
||||
|
||||
DEPENDS =+ "mpfr gmp libmpc"
|
||||
@@ -36,7 +31,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \
|
||||
file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1 \
|
||||
file://COPYING.RUNTIME;md5=fe60d87048567d4fe8c8a0ed2448bcc8"
|
||||
|
||||
SRC_URI = "git://github.com/mirrors/gcc.git;branch=${BRANCH};protocol=git \
|
||||
SRC_URI = "${GNU_MIRROR}/gcc/gcc-${PV}/gcc-${PV}.tar.bz2 \
|
||||
file://gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch \
|
||||
file://100-uclibc-conf.patch \
|
||||
file://gcc-uclibc-locale-ctype_touplow_t.patch \
|
||||
@@ -80,9 +75,11 @@ SRC_URI = "git://github.com/mirrors/gcc.git;branch=${BRANCH};protocol=git \
|
||||
file://0001-crtstuff.c-USE_PT_GNU_EH_FRAME-Define-for-systems-us.patch \
|
||||
file://0001-Makefile.in-vis_hide-gen-hide-list-Do-not-make-defin.patch \
|
||||
"
|
||||
SRC_URI[md5sum] = "cc308a0891e778cfda7a151ab8a6e762"
|
||||
SRC_URI[sha256sum] = "8a9283d7010fb9fe5ece3ca507e0af5c19412626384f8a5e9434251ae100b084"
|
||||
|
||||
S = "${TMPDIR}/work-shared/gcc-${PV}-${PR}/git"
|
||||
B = "${WORKDIR}/${BRANCH}/build.${HOST_SYS}.${TARGET_SYS}"
|
||||
S = "${TMPDIR}/work-shared/gcc-${PV}-${PR}/gcc-${PV}"
|
||||
B = "${WORKDIR}/gcc-${PV}/build.${HOST_SYS}.${TARGET_SYS}"
|
||||
|
||||
# Language Overrides
|
||||
FORTRAN = ""
|
||||
|
||||
Reference in New Issue
Block a user