blob: 04c6751c26ed2ad9c38e9817635082f348150d00 [file] [log] [blame]
Brad Bishopbec4ebc2022-08-03 09:55:16 -04001require recipes-devtools/gcc/gcc-common.inc
2
3# Third digit in PV should be incremented after a minor release
4ARM_GCC_VERSION = "11.2"
5PV = "arm-${ARM_GCC_VERSION}"
6CVE_VERSION = "11.2"
7
8# BINV should be incremented to a revision after a minor gcc release
9
10BINV = "11.2.1"
11
12MMYY = "22.02"
13RELEASE = "20${MMYY}"
14PR = "r${RELEASE}"
15
16FILESEXTRAPATHS =. "${FILE_DIRNAME}/gcc-arm-${ARM_GCC_VERSION}:${FILE_DIRNAME}/gcc-arm-${ARM_GCC_VERSION}/backport:"
17
18DEPENDS =+ "mpfr gmp libmpc zlib flex-native"
19NATIVEDEPS = "mpfr-native gmp-native libmpc-native zlib-native flex-native"
20
21LICENSE = "GPL-3.0-with-GCC-exception & GPL-3.0-only"
22
23LIC_FILES_CHKSUM = "\
24 file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \
25 file://COPYING3;md5=d32239bcb673463ab874e80d47fae504 \
26 file://COPYING3.LIB;md5=6a6a8e020838b23406c81b19c1d46df6 \
27 file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1 \
28 file://COPYING.RUNTIME;md5=fe60d87048567d4fe8c8a0ed2448bcc8 \
29"
30
31BASEURI ?= "https://developer.arm.com/-/media/Files/downloads/gnu/${ARM_GCC_VERSION}-${RELEASE}/srcrel/gcc-arm-src-snapshot-${ARM_GCC_VERSION}-${RELEASE}.tar.xz"
32SRC_URI = "\
33 ${BASEURI} \
34 file://0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch \
35 file://0002-gcc-poison-system-directories.patch \
36 file://0004-64-bit-multilib-hack.patch \
37 file://0007-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch \
38 file://0009-cpp-honor-sysroot.patch \
39 file://0011-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch \
40 file://0012-gcc-Fix-argument-list-too-long-error.patch \
41 file://0014-libtool.patch \
42 file://0015-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch \
43 file://0016-Use-the-multilib-config-files-from-B-instead-of-usin.patch \
44 file://0017-Avoid-using-libdir-from-.la-which-usually-points-to-.patch \
45 file://0018-export-CPP.patch \
46 file://0019-Ensure-target-gcc-headers-can-be-included.patch \
47 file://0020-Don-t-search-host-directory-during-relink-if-inst_pr.patch \
48 file://0023-libcc1-fix-libcc1-s-install-path-and-rpath.patch \
49 file://0024-handle-sysroot-support-for-nativesdk-gcc.patch \
50 file://0025-Search-target-sysroot-gcc-version-specific-dirs-with.patch \
51 file://0027-nios2-Define-MUSL_DYNAMIC_LINKER.patch \
52 file://0028-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch \
53 file://0029-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch \
54 file://0030-sync-gcc-stddef.h-with-musl.patch \
55 file://0033-Re-introduce-spe-commandline-options.patch \
56 file://0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch \
57 file://0035-gentypes-genmodes-Do-not-use-__LINE__-for-maintainin.patch \
58 file://0036-mingw32-Enable-operation_not_supported.patch \
59 file://0037-libatomic-Do-not-enforce-march-on-aarch64.patch \
60 file://0041-apply-debug-prefix-maps-before-checksumming-DIEs.patch \
61 file://0006-If-CXXFLAGS-contains-something-unsupported-by-the-bu.patch \
62 file://0001-Fix-install-path-of-linux64.h.patch \
63 file://0001-CVE-2021-42574.patch \
64 file://0002-CVE-2021-42574.patch \
65 file://0003-CVE-2021-42574.patch \
66 file://0004-CVE-2021-42574.patch \
67 file://0001-CVE-2021-46195.patch \
68"
69SRC_URI[sha256sum] = "417662cd4e79e74b9fbac67bf1edac1c03d11ea58f10144487b7e25e58ff4931"
70
71S = "${TMPDIR}/work-shared/gcc-${PV}-${PR}/gcc-arm-src-snapshot-${ARM_GCC_VERSION}-${RELEASE}"
72
73# For dev release snapshotting
74#S = "${TMPDIR}/work-shared/gcc-${PV}-${PR}/gcc-${RELEASE}"
75#B = "${WORKDIR}/gcc-${PV}/build.${HOST_SYS}.${TARGET_SYS}"
76
77# Language Overrides
78FORTRAN = ""
79JAVA = ""
80
81SSP ?= "--disable-libssp"
82SSP:mingw32 = "--enable-libssp"
83
84EXTRA_OECONF_BASE = "\
85 ${SSP} \
86 --enable-libitm \
87 --enable-lto \
88 --disable-bootstrap \
89 --with-system-zlib \
90 ${@'--with-linker-hash-style=${LINKER_HASH_STYLE}' if '${LINKER_HASH_STYLE}' else ''} \
91 --enable-linker-build-id \
92 --with-ppl=no \
93 --with-cloog=no \
94 --enable-checking=release \
95 --enable-cheaders=c_global \
96 --without-isl \
97"
98
99EXTRA_OECONF_INITIAL = "\
100 --disable-libgomp \
101 --disable-libitm \
102 --disable-libquadmath \
103 --with-system-zlib \
104 --disable-lto \
105 --disable-plugin \
106 --enable-linker-build-id \
107 --enable-decimal-float=no \
108 --without-isl \
109 --disable-libssp \
110"
111
112EXTRA_OECONF:append_aarchilp32 = " --with-abi=ilp32"
113
114EXTRA_OECONF_PATHS = "\
115 --with-gxx-include-dir=/not/exist{target_includedir}/c++/${BINV} \
116 --with-sysroot=/not/exist \
117 --with-build-sysroot=${STAGING_DIR_TARGET} \
118"
119
120# Is a binutils 2.26 issue, not gcc
121CVE_CHECK_IGNORE += "CVE-2021-37322"