Re: RFR: 8336342: Fix known X11 library locations in sysroot

2024-07-26 Thread Paul Hohensee
On Sat, 13 Jul 2024 13:43:42 GMT, Aleksey Shipilev wrote: > In [JDK-8257913](https://bugs.openjdk.org/browse/JDK-8257913), we added the > search paths for X11 libraries, but they point explicitly to `libX11.so`. > First, this is not really correct, as `x_libraries` would be added to a > search

RFR: 8337283: configure.log is truncated when build dir is on different filesystem

2024-07-26 Thread Aleksey Shipilev
I noticed that `build/$confname/configure.log` was truncated on some of my build nodes. Turns out, we are moving configure.log from tree root to that place a bit prematurely. We move `configure.log` here: https://github.com/openjdk/jdk/blob/4f194f10a1481cdc9df4e6338f6cabd07a34c84c/make/autoconf/

Re: RFR: 8336343: Add more known sysroot library locations for ALSA

2024-07-26 Thread Paul Hohensee
On Sat, 13 Jul 2024 16:48:20 GMT, Aleksey Shipilev wrote: > Following [JDK-8257913](https://bugs.openjdk.org/browse/JDK-8257913), it > would be more convenient to search into more paths in sysroot for ALSA as > well. Currently, this is the only thing that is missing for me to build from > the

Re: RFR: 8337283: configure.log is truncated when build dir is on different filesystem

2024-07-26 Thread Paul Hohensee
On Fri, 26 Jul 2024 16:21:33 GMT, Aleksey Shipilev wrote: > I noticed that `build/$confname/configure.log` was truncated on some of my > build nodes. Turns out, we are moving configure.log from tree root to that > place a bit prematurely. > > We move `configure.log` here: > https://github.com/

Re: RFR: 8337143: (fc, fs) Move filesystem-related native objects from libnio to libjava [v2]

2024-07-26 Thread Brian Burkhalter
> This proposed change would move the native objects required for NIO file > interaction from the libnio native library to the libjava native library on > Linux, macOS, and Windows. Brian Burkhalter has updated the pull request incrementally with one additional commit since the last revision:

Re: RFR: 8337143: (fc, fs) Move filesystem-related native objects from libnio to libjava

2024-07-26 Thread Brian Burkhalter
On Thu, 25 Jul 2024 10:05:03 GMT, Alan Bateman wrote: > Also think to work through some naming on IOUtil vs. NIOUtil as it won't be > obvious to maintainers which class to use. Maybe `NIOUtil` should be `NetUtil` as its methods appear to be invoked only by classes involved in networking?