diff options
author | Khem Raj <raj.khem@gmail.com> | 2025-05-05 10:43:15 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-05-05 15:46:00 -0700 |
commit | 4d18427d4434e822972a3ba6772d5e1d607dcc17 (patch) | |
tree | 4196c4e57bba749becfded8a094c4b892659ef8c | |
parent | c10b45a196af0a8b1aaaebc168616ff486f209bb (diff) | |
download | meta-openembedded-4d18427d4434e822972a3ba6772d5e1d607dcc17.tar.gz |
opengl-es-cts: Workaround gcc-15 segfault on aarch64
We are seeing a compile failure due to g++ sefaulting on one compile unit
It seems a GCC 15 bug [1]
[1] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=120119
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-graphics/vk-gl-cts/opengl-es-cts_3.2.12.0.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-oe/recipes-graphics/vk-gl-cts/opengl-es-cts_3.2.12.0.bb b/meta-oe/recipes-graphics/vk-gl-cts/opengl-es-cts_3.2.12.0.bb index 96a4ca7d49..db4ffbe92a 100644 --- a/meta-oe/recipes-graphics/vk-gl-cts/opengl-es-cts_3.2.12.0.bb +++ b/meta-oe/recipes-graphics/vk-gl-cts/opengl-es-cts_3.2.12.0.bb | |||
@@ -24,4 +24,6 @@ do_install() { | |||
24 | } | 24 | } |
25 | 25 | ||
26 | SECURITY_CFLAGS:riscv64 = "${SECURITY_NOPIE_CFLAGS}" | 26 | SECURITY_CFLAGS:riscv64 = "${SECURITY_NOPIE_CFLAGS}" |
27 | # GCC-15 segfaults see - https://gcc.gnu.org/bugzilla/show_bug.cgi?id=120119 | ||
28 | TUNE_CCARGS:remove:aarch64 = "-mcpu=cortex-a57+crc" | ||
27 | LTO = "" | 29 | LTO = "" |