-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Fix typo and enumeration list in README.windows.md #7557
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
Conversation
|
I think we've fixed this one - I believe the underlying cause was PCRE test failures (which are just skipped on Windows now as of #6642) and parallel make resulting in OpenBLAS finishing and looking like the cause of the failure much later. |
|
Well, fingers crossed it seems to be working so far (I am compiling Julia using MSYS2 on a laptop at work), I will know once compilation completes. This PR was only meant to fix a typo on the Windows README file (I previewed the README after the change I made and it looks ok). There was one spelling mistake and a spacing issue, which affected the display of the enumeration list among else. |
Fix typo and enumeration list in README.windows.md
|
@tkelman, fyi, it compiled without problems, spotless. |
|
great! good to have the windows build running much cleaner these days. how do the tests look? |
|
Julia seems to be working well, and the test/runtests.jl returns SUCCESS. On the other hand, usr/bin/test-julia.bat fails, but this surely has to do with you the batch script which sets the environment on Windows. Another thing is that julia works well when spawned from the msys2 shell. However, when I use the Julia batch script, the package manager doesn't work because git doesn't work (since the environment is not set well here too). The obvious way to circumvent this issue is to install git outside the msys2 shell using a Windows git installer, but this is not entirely ideal. In any case, I am very happy that I can compile Julia on Windows without any serious problems. |
|
If you compile from source, it doesn't include the bundled git that you get after doing |
|
Your feedback has been very helpful @tkelman. I am now able to use the package manager too. It may be useful to add the following clarifications to the Windows README:
Thank you for your tips and help! P.S. I am still unclear how I would go about running the tests on Windows. |
|
There was #6516, which is related. At what point did you need 7zip? There are several ways to run the tests. |
|
Thanaks @tkelman. I needed to manually mount 7z at the very end, after compiling when I ran the |
|
As for the tests, they all failed, which is odd because I can use Julia without any issues. |
|
Can you please post the failure messages? The linear algebra tests are the first ones to run, and occasionally those can identify bugs in OpenBLAS. What kind of processor do you have? (output from |
|
I was thinking about it and in fact I am not sure whether the tests fail or not. The reason for this is that I don't know what the output should be in case of success or failure, and the output seems to me cryptic and short instead of being self-explanatory. For example, I would anticipate each test to return sth minimal along the lines "ok" or "failed", but all I get is just the name of each test that was run (the name appears in red, a colour we all tend to interpret as a failure for psychological reasons if it is not followed be a more verbose message). In any case, since you certainly know more about what the output should look, here is what I get: Here is the output of |
|
That is very interesting, thank you. I never thought about it before, but you're right maybe red isn't the best color for displaying the test name... generally If there's no error message and the test finishes, it succeeded. Is this Windows 7, Windows 8, or something older? Can you run the following and share the output? We shouldn't be getting an error about symlink permissions, since the tests that make symbolic links to files are under |
|
Thanks @tkelman, it is my pleasure to get involved as I learn more about running Julia on Windows via our discussion. I must say, Julia seems to run very well nowadays on Windows. So, when I run the commands you sent me on msys2, I get the following: On the other hand, when I start the julia executable that was installed via the installer we created by using |
|
I forgot to mention, I use Windows 7 Professional. |
|
Wacky - so the first time through with the error was running Julia inside the MSYS2 terminal, and the second time was opening the installed version outside of it? If so, something's different between the two environments. For one the tempdir is in a different place, but I would not expect that to make a major difference. How about |
|
Yes, this is what I meant in relation to your first question. In relation to you second question-suggestion I will check the permissions of the temporary directory created in msys2 and will let you know tomorrow if this causes the error. |
|
I checked it, I have rwx access to subdir, while |
No description provided.