-
Notifications
You must be signed in to change notification settings - Fork 44
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
Put the GCC DLL replacement back #97
base: master
Are you sure you want to change the base?
Conversation
I am trying to "fix IPOPT' on a new machine now and when I run |
did you see a
at all? |
This reverts commit 0312fb0.
deps/build.jl
Outdated
@@ -6,7 +6,7 @@ if is_windows() | |||
winrpm_bin = joinpath(WinRPM.installdir, "usr", Sys.MACHINE, | |||
"sys-root", "mingw", "bin") | |||
dlls = ["libgfortran-4", "libquadmath-0", "libstdc++-6", "libwinpthread-1", | |||
"libssp-0", Compat.Sys.WORD_SIZE==32 ? "libgcc_s_sjlj-1" : "libgcc_s_seh-1"] | |||
"libssp-0", Sys.WORD_SIZE==32 ? "libgcc_s_sjlj-1" : "libgcc_s_seh-1"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
WORD_SIZE
was exported Base symbol so it was available in the Sys
module even before it was moved there.
Will help with jump-dev/Ipopt.jl#77 - the change in threading model broke a bunch of packages. This is a little risky because upstream changes might end up causing the downloaded dll's to not work, but you should always be able to put the most recently working
-copy
versions back if that happens.