-
Notifications
You must be signed in to change notification settings - Fork 24
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
update to geos 3.7.1 binaries, support more plaforms #56
Conversation
Something is wrong on windows 64 bit, I also see it locally. No idea what though. |
Loading Or lowered manually to a using LibGEOS
c = LibGEOS._context
r = LibGEOS.WKTReader(c)
w = "POLYGON((0 0,1 0,1 1,0 0))"
ccall((:GEOSWKTReader_read_r,LibGEOS.libgeos),Ptr{LibGEOS.GEOSGeometry},(LibGEOS.GEOSContextHandle_t,Ptr{LibGEOS.GEOSWKTReader},Cstring),c.ptr, r.ptr, w) It just goes poof and closes julia without saying anything. If anyone has any ideas, or how to debug, I'd be all ears :) Don't see how this should only affect Windows 64 bit, unless the build is bad somehow. |
Hoping this may help JuliaGeo/LibGEOS.jl#56
Edit: scrap that, locally I see the same now, must have tested something else. |
Makes no difference, still hitting JuliaPackaging/BinaryBuilder.jl#407
Which has expanded GCC versions, and uses the workaround for the failing GCC4 builds as described in JuliaPackaging/BinaryBuilder.jl#407 (comment)
Note that there are several new functions added to the C API according to
https://trac.osgeo.org/geos/browser/git/NEWS?rev=3.7.0
These are not wrapped as part of this PR, but can be added separately.