-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
graal/vm suite uses the fcntl module, which is not supported on Windows. #795
Comments
@ansalond |
@JornVernee, thanks for the report! I have some pending fixes to have the As a temporary workaround, if you want to produce an artifact similar to the "Windows GraalVM Preview" available from the GraalVM OTN page, you could run |
@ansalond Thanks, I will try out After working around this (and some other problem with |
Fixed since d9fb898 |
The
vm
suite is importing thefcntl
module, but on Windows this causes an error:It looks like
fcntl
is a unix only module [1].There is currently only place where this module is used, by a function called
lock_directory
[2]. I worked around this problem by moving the import into that function. (butmx build
is still failing with other errors)[1] : https://stackoverflow.com/q/1422368
[2] : https://github.com/oracle/graal/blob/master/vm/mx.vm/mx_vm.py#L930
The text was updated successfully, but these errors were encountered: