Skip to content

Commit 64c0962

Browse files
committed
8307569: Build with gcc8 is broken after JDK-8307301
Reviewed-by: erikj
1 parent bb3e44d commit 64c0962

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,8 @@ else
455455
HARFBUZZ_DISABLED_WARNINGS_gcc := missing-field-initializers strict-aliasing \
456456
unused-result
457457
# noexcept-type required for GCC 7 builds. Not required for GCC 8+.
458-
HARFBUZZ_DISABLED_WARNINGS_CXX_gcc := class-memaccess noexcept-type
458+
# expansion-to-defined required for GCC 9 builds. Not required for GCC 10+.
459+
HARFBUZZ_DISABLED_WARNINGS_CXX_gcc := class-memaccess noexcept-type expansion-to-defined
459460
HARFBUZZ_DISABLED_WARNINGS_clang := missing-field-initializers range-loop-analysis
460461
HARFBUZZ_DISABLED_WARNINGS_microsoft := 4267 4244
461462

0 commit comments

Comments
 (0)