Re: RFR: 8316294: AIX: Build fopen system call fails on file _BUILD_LIBJDWP_objectfilenames.txt [v2]

2023-09-19 Thread Adam Farley
On Mon, 18 Sep 2023 18:13:03 GMT, Erik Joelsson wrote: >> Adam Farley has updated the pull request incrementally with one additional >> commit since the last revision: >> >> Compressing the change as advised. > > Marked as reviewed by erikj (Reviewer). And thank you @erikj79 and

Re: RFR: 8316294: AIX: Build fopen system call fails on file _BUILD_LIBJDWP_objectfilenames.txt [v2]

2023-09-18 Thread Erik Joelsson
On Fri, 15 Sep 2023 13:27:13 GMT, Adam Farley wrote: >> While building openjdk on aix, we see this build-fail error: >> >> The fopen system call failed on file >> -f/home/.etce4tcetc./_BUILD_LIBJDWP_objectfilenames.txt >> >> This change expands the fix for the similar issue on macosx,

Re: RFR: 8316294: AIX: Build fopen system call fails on file _BUILD_LIBJDWP_objectfilenames.txt [v2]

2023-09-15 Thread Christoph Langer
On Fri, 15 Sep 2023 13:27:13 GMT, Adam Farley wrote: >> While building openjdk on aix, we see this build-fail error: >> >> The fopen system call failed on file >> -f/home/.etce4tcetc./_BUILD_LIBJDWP_objectfilenames.txt >> >> This change expands the fix for the similar issue on macosx,

Re: RFR: 8316294: AIX: Build fopen system call fails on file _BUILD_LIBJDWP_objectfilenames.txt [v2]

2023-09-15 Thread Adam Farley
> While building openjdk on aix, we see this build-fail error: > > The fopen system call failed on file > -f/home/.etce4tcetc./_BUILD_LIBJDWP_objectfilenames.txt > > This change expands the fix for the similar issue on macosx, and prevents the > fopen issue on aix. Adam Farley has