Date: Fri, 14 Nov 2025 16:03:06 +0100 From: Palle Girgensohn <girgen@FreeBSD.org> To: Ronald Klop <ronald-lists@klop.ws> Cc: java@freebsd.org Subject: Re: suppress some warning in openjdk11 build? Message-ID: <3DDE074D-549A-4121-B361-7F9D457CE420@FreeBSD.org> In-Reply-To: <1286497946.8067.1763132427076@localhost> References: <1286497946.8067.1763132427076@localhost>
index | next in thread | previous in thread | raw e-mail
Makes perfect sense for me. 👍 > 14 nov. 2025 kl. 16:00 skrev Ronald Klop <ronald-lists@klop.ws>: > > Any objections if I suppress some warning in openjdk11? > > It save a couple of megabytes of log file and makes it possible to open the poudriere log on my mobile phone 😀. > Search for "[-W" in https://pkg-status.freebsd.org/beefy24/data/main-amd64-default/pa48e645bda85_s8234c1899b/logs/openjdk11-11.0.29+7.1.log for an example of the amount of output these warnings generate. > diff --git a/java/openjdk11/Makefile b/java/openjdk11/Makefile > index 1548c2e3fa6b..85f308235b92 100644 > --- a/java/openjdk11/Makefile > +++ b/java/openjdk11/Makefile > @@ -171,6 +172,8 @@ CFLAGS+= -Wl,-rpath=${LOCALBASE}/lib/gcc${GCC_DEFAULT} > CXXFLAGS+= -Wl,-rpath=${LOCALBASE}/lib/gcc${GCC_DEFAULT} > CONFIGURE_ARGS+=--disable-precompiled-headers > .else > +# it is up to upstream project to fix these or not > +CFLAGS+= -Wno-deprecated-builtins -Wno-inline-asm -Wno-unknown-attributes > MAKE_ENV+= USE_CLANG=true > .if ${ARCH:Mpowerpc64*} > LLVM_VER= 12 > > I have a ports commit bit so I can commit this. > > Regards, > Ronald. >help
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?3DDE074D-549A-4121-B361-7F9D457CE420>
