jump-dev / ECOS.jl

A Julia interface to the ECOS conic optimization solver
https://github.com/embotech/ecos
Other
41 stars 17 forks source link

Binaries for Windows #7

Closed IainNZ closed 10 years ago

IainNZ commented 10 years ago

Somehow

mlubin commented 10 years ago

We should try to work with the ECOS developers on this. @adomahidi, we'd like .dll file for ecos on windows so that it's easily installable via the Julia package manager. Are these available anywhere?

tkelman commented 10 years ago

Not that hard guys. Try these. http://sourceforge.net/projects/juliadeps-win/files/ecos-1.0.3.7z Not yet tested in Julia, but easy enough to build (here from Cygwin, but MSYS should work fine too - just apply the so patch first):

 CC=x86_64-w64-mingw32-gcc AR=x86_64-w64-mingw32-ar make ecos.so && mv libecos.so libecos.dll

Use the unpacked_dir BinDeps option I added, see https://github.com/porterjamesj/Gumbo.jl/blob/master/deps/build.jl#L13