RFR: 8289646: configure script failed on WSL
Magnus Ihse Bursie
ihse at openjdk.org
Mon Jul 4 16:29:27 UTC 2022
On Mon, 4 Jul 2022 03:56:03 GMT, Yasumasa Suenaga <ysuenaga at openjdk.org> wrote:
> configure failed as following when I run it on WSL 1.
>
>
> checking for version string... 20-internal-adhoc.yasuenag.jdk
> configure: Found potential Boot JDK using configure arguments
> configure: The command for java_to_test, which resolves as "/mnt/d/java/jdk-18/bin/java", can not be found.
> configure: error: Cannot locate /mnt/d/java/jdk-18/bin/java
> configure exiting with result code 1
>
>
> fixpath.sh would attempt to add ".exe" (e.g. "java" -> "java.exe") if `wslpath -w" failed (returns non-zero value). However it returns zero even if the path does not exist in recent WSL (v0.61.4 at least).
>
> WSL v0.60.0.0
>
> $ wslpath -w silver-bullet
> wslpath: silver-bullet: No such file or directory
> $ echo $?
> 1
>
>
> WSL v0.61.4.0
>
> $ wslpath -w silver-bullet
> silver-bullet
> $ echo $?
> 0
>
>
> We should add ".exe" at the tail of path regardless of return value from wslpath.
I added some comments. As a minimum, you need to verify that this works on WSL1, WSL2 and Cygwin. Ideally, you would test on msys2 as well. You will need to verify that importing paths works for executables both with and without .exe, both if they reside in the winenv root (like in /tmp) or on the Windows drive (like /cygwin/d/data/...).
As I wrote, I think you might run into problems for things like /tmp/foo.exe on WSL1. It might also work on newer versions of wslpath but break on older, seeing that Microsoft is in the habit of changing the behaviour of wslpath...
make/scripts/fixpath.sh line 150:
> 148: if [[ "$path" != "" ]]; then
> 149: # Store current unix path
> 150: unixpath="$path"
I think the distinction between "unixpath" and "winpath" was helpful, with "path" being the input/output variable of this conversion process. Was there some specific reason that you've removed "unixpath"?
make/scripts/fixpath.sh line 177:
> 175:
> 176: if [[ ! -e $path ]]; then
> 177: if [[ -e $path.exe ]]; then
I'm not entirely sure this is correct. The comment above states: " On WSL1, PATHTOOL will fail for files in envroot." That could mean that it will also fail even if you provide it with $path.exe. If this is the case, then your change will break.
It might even be that "WSL1" in this case means "older versions of WSL1", since Microsoft made some changes even to WSL1 when WSL2 was introduced to be able to run in parallel.
-------------
PR: https://git.openjdk.org/jdk/pull/9357
More information about the build-dev
mailing list