-
-
Notifications
You must be signed in to change notification settings - Fork 123
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
Can't install MPI.jl on Windows #140
Comments
Ok, I tried to add a Windows provider that uses provides(SimpleBuild,
(@build_steps begin
CreateDirectory(builddir)
(@build_steps begin
ChangeDirectory(builddir)
(@build_steps begin
configure
`ninja`
`ninja install`
end)
end)
end), [mpi], os = :Windows) it just says:
Can I make it run verbosely, to see what error is happening? |
master has support for MS MPI, should be enough to have MS MPI installed. |
This is because by default, if you are on Windows, BinDeps does not try # Default installation method
if OS_NAME == :Darwin
defaults = [Binaries,PackageManager,SystemPaths,BuildProcess]
elseif OS_NAME == :Linux
defaults = [PackageManager,SystemPaths,BuildProcess]
elseif OS_NAME == :Windows
defaults = [Binaries,PackageManager,SystemPaths]
else
defaults = [SystemPaths,BuildProcess]
end This is discussed in this issue. @windows_only push!(BinDeps.defaults, BuildProcess)
@BinDeps.install Dict(:mpi => :mpi)
@windows_only pop!(BinDeps.defaults) |
#271 got rid of BinDeps, so this should be fixed. If you have more problems, please open a new issue. |
I'm getting these errors:
What should I do?
The text was updated successfully, but these errors were encountered: