Skip to content

Commit a010294

Browse files
authored
Update (2023.12.11)
32995: 8319268: Build failure with GCC8.3.1 after 8313643
1 parent d24b593 commit a010294

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

make/modules/java.desktop/lib/Awt2dLibraries.gmk

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,9 @@ else
504504
unused-result array-bounds parentheses
505505
# noexcept-type required for GCC 7 builds. Not required for GCC 8+.
506506
# expansion-to-defined required for GCC 9 builds. Not required for GCC 10+.
507-
HARFBUZZ_DISABLED_WARNINGS_CXX_gcc := class-memaccess noexcept-type expansion-to-defined dangling-reference
507+
# maybe-uninitialized required for GCC 8 builds. Not required for GCC 9+.
508+
HARFBUZZ_DISABLED_WARNINGS_CXX_gcc := class-memaccess noexcept-type \
509+
expansion-to-defined dangling-reference maybe-uninitialized
508510
HARFBUZZ_DISABLED_WARNINGS_clang := missing-field-initializers range-loop-analysis
509511
HARFBUZZ_DISABLED_WARNINGS_microsoft := 4267 4244
510512

0 commit comments

Comments
 (0)