Skip to content
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

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open

Put the GCC DLL replacement back #97

wants to merge 8 commits into from

Conversation

tkelman
Copy link
Contributor

@tkelman tkelman commented Jan 25, 2017

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.

@huckl3b3rry87
Copy link

I am trying to "fix IPOPT' on a new machine now and when I run
https://github.com/JuliaPackaging/WinRPM.jl/blob/9bee07cfa842db9a8496416ae74cef64d35f5df5/deps/build.jl

I get
capture

@tkelman
Copy link
Contributor Author

tkelman commented Feb 16, 2017

did you see a

INFO: Downloading: libwinpthread1
INFO: Extracting: libwinpthread1

at all?

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"]
Copy link

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants