blob: b3e1c332eef3c9fe5d1523f8cd39bfd35a6784da [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001require gcc-common.inc
2
3# Third digit in PV should be incremented after a minor release
4
5PV = "4.8.4"
6
7# BINV should be incremented to a revision after a minor gcc release
8
9BINV = "4.8.4"
10
11FILESEXTRAPATHS =. "${FILE_DIRNAME}/gcc-4.8:"
12
13DEPENDS =+ "mpfr gmp libmpc zlib"
14NATIVEDEPS = "mpfr-native gmp-native libmpc-native zlib-native"
15
16LICENSE = "GPL-3.0-with-GCC-exception & GPLv3"
17
18LIC_FILES_CHKSUM = "\
19 file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \
20 file://COPYING3;md5=d32239bcb673463ab874e80d47fae504 \
21 file://COPYING3.LIB;md5=6a6a8e020838b23406c81b19c1d46df6 \
22 file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1 \
23 file://COPYING.RUNTIME;md5=fe60d87048567d4fe8c8a0ed2448bcc8 \
24"
25
26SRC_URI = "\
27 ${GNU_MIRROR}/gcc/gcc-${PV}/gcc-${PV}.tar.bz2 \
28 file://0002-uclibc-conf.patch \
29 file://0003-gcc-uclibc-locale-ctype_touplow_t.patch \
30 file://0004-uclibc-locale.patch \
31 file://0005-uclibc-locale-no__x.patch \
32 file://0006-uclibc-locale-wchar_fix.patch \
33 file://0007-uclibc-locale-update.patch \
34 file://0008-missing-execinfo_h.patch \
35 file://0009-c99-snprintf.patch \
36 file://0010-c99-complex-ugly-hack.patch \
37 file://0011-index_macro.patch \
38 file://0012-libmudflap-susv3-legacy.patch \
39 file://0013-libstdc-namespace.patch \
40 file://0014-sh-pr24836.patch \
41 file://0015-arm-Use-TARGET_ENDIAN_OPTION-for-determining-MULTILI.patch \
42 file://0016-gcc-poison-system-directories.patch \
43 file://0017-gcc-poison-dir-extend.patch \
44 file://0018-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch \
45 file://0019-64-bit-multilib-hack.patch \
46 file://0020-optional-libstdc.patch \
47 file://0021-gcc-disable-MASK_RELAX_PIC_CALLS-bit.patch \
48 file://0022-COLLECT_GCC_OPTIONS.patch \
49 file://0023-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch \
50 file://0024-PR-target-32219.patch \
51 file://0025-fortran-cross-compile-hack.patch \
52 file://0026-libgcc-sjlj-check.patch \
53 file://0027-cpp-honor-sysroot.patch \
54 file://0028-MIPS64-Default-to-N64-ABI.patch \
55 file://0029-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch \
56 file://0030-gcc-Fix-argument-list-too-long-error.patch \
57 file://0031-Disable-sdt.patch \
58 file://0032-libtool.patch \
59 file://0033-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch \
60 file://0034-Use-the-multilib-config-files-from-B-instead-of-usin.patch \
61 file://0035-wcast-qual-PR-55383.patch \
62 file://0038-gcc-4.8-build-args.patch \
63 file://0040-fix-g++-sysroot.patch \
64 file://0041-libtool-avoid-libdir.patch \
65 file://0042-pr57748.patch \
66 file://0043-cpp.patch \
67 file://0044-gengtypes.patch \
68 file://0046-libatomic-deptracking.patch \
69 file://0047-repomembug.patch \
70 file://0049-Enable-SPE-AltiVec-generation-on-powepc-linux-target.patch \
71 file://target-gcc-includedir.patch \
Patrick Williamsf1e5d692016-03-30 15:21:19 -050072 file://0051-gcc-483-universal-initializer-no-warning.patch \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050073"
74SRC_URI[md5sum] = "5a84a30839b2aca22a2d723de2a626ec"
75SRC_URI[sha256sum] = "4a80aa23798b8e9b5793494b8c976b39b8d9aa2e53cd5ed5534aff662a7f8695"
76
77S = "${TMPDIR}/work-shared/gcc-${PV}-${PR}/gcc-${PV}"
78B = "${WORKDIR}/gcc-${PV}/build.${HOST_SYS}.${TARGET_SYS}"
79
80# Language Overrides
81FORTRAN = ""
82JAVA = ""
83
84LTO = "--enable-lto"
85
86EXTRA_OECONF_BASE = "\
87 ${LTO} \
88 --enable-libssp \
89 --disable-bootstrap \
90 --disable-libmudflap \
91 --with-system-zlib \
92 --with-linker-hash-style=${LINKER_HASH_STYLE} \
93 --enable-linker-build-id \
94 --with-ppl=no \
95 --with-cloog=no \
96 --enable-checking=release \
97 --enable-cheaders=c_global \
98"
99
100EXTRA_OECONF_INITIAL = "\
101 --disable-libmudflap \
102 --disable-libgomp \
103 --disable-libssp \
104 --disable-libquadmath \
105 --with-system-zlib \
106 --disable-lto \
107 --disable-plugin \
108 --enable-decimal-float=no \
109"
110
111EXTRA_OECONF_append_libc-uclibc = " --disable-decimal-float "
112
113EXTRA_OECONF_PATHS = "\
114 --with-gxx-include-dir=${STAGING_DIR_TARGET}${target_includedir}/c++/${BINV} \
115 --with-sysroot=${STAGING_DIR_TARGET} \
116 --with-build-sysroot=${STAGING_DIR_TARGET} \
117"
118
119