Skip to content

Commit ec79ab4

Browse files
xpbobDamonFool
authored andcommittedNov 3, 2023
8319268: Build failure with GCC8.3.1 after 8313643
Reviewed-by: jiefu, erikj, prr
1 parent c788160 commit ec79ab4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

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

+3-1
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)
Please sign in to comment.