-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
build_executable.jl windows support #9973
Comments
The SRWLOCK error sounds like this: joyent/libuv#263 |
@few, Awesome it worked, I will give it a more thorough test tomorrow. The things I have found that needs to be changed to get windows support is:
|
(presumably that should be |
Fix windows support for `build_executable.jl`. fix #9973
I am trying to build a standalone executable on windows and I'm running into some problems.
I have added gcc as stated in the script.
First of I ran into a problem with a missing string escape when windows paths is written to a userimg file in
emit_userimgjl
. It causes the userimg to contain aninclude("folder\folder\file.jl")
with only single\
. By inserting include("$(escape_string(script_file))") on line:julia/contrib/build_executable.jl
Line 224 in 26ae206
After overcoming this problem I get this error:
When I run the command manually i get:
The file I try to compile looks like:
@few do you have any idea what's wrong?
The text was updated successfully, but these errors were encountered: