We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01312a0 commit a32ee5dCopy full SHA for a32ee5d
make/autoconf/flags-cflags.m4
@@ -1,5 +1,5 @@
1
#
2
-# Copyright (c) 2011, 2022, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2011, 2023, Oracle and/or its affiliates. All rights reserved.
3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
5
# This code is free software; you can redistribute it and/or modify it
@@ -189,6 +189,10 @@ AC_DEFUN([FLAGS_SETUP_WARNINGS],
189
WARNINGS_ENABLE_ALL_CXXFLAGS="$WARNINGS_ENABLE_ALL_CFLAGS $WARNINGS_ENABLE_ADDITIONAL_CXX"
190
191
DISABLED_WARNINGS="unused-parameter unused"
192
+ # gcc10/11 on ppc generate lots of abi warnings about layout of aggregates containing vectors
193
+ if test "x$OPENJDK_TARGET_CPU_ARCH" = "xppc"; then
194
+ DISABLED_WARNINGS="$DISABLED_WARNINGS psabi"
195
+ fi
196
;;
197
198
clang)
0 commit comments