-
Notifications
You must be signed in to change notification settings - Fork 5
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 name of the GDAL shared lib into a variable so it can accommo… #20
base: master
Are you sure you want to change the base?
Conversation
…date the different names it has on Windows and *nix
Can you make the changes in https://github.com/wkearn/RasterIO.jl/blob/master/deps/build.jl instead? |
Sorry, I don't understand. I don't want to change |
And sorry again, I didn't want to close this issue. |
You might want to spend some time looking through the README for BinDeps. |
Just for clarification, If you have a custom gdal.dll or netcdf.dll, make sure they can be found by julia (test with find_library) and run Pkg.build("RasterIO"). This should create a deps.jl file containing the path to your shared lib file. Please let me know if it doesn't. After that |
Thanks, I did not know these things but I'm still a bit confused. I can see now that I can edit See, this works for me
but it still made conda download the other dll and put it in |
Ok, I guess that BinDeps does not recognize the name What is the exact name of your netcdf.dll? |
Right, I was dumb in my previous attempt. Meanwhile I advanced a bit more. Like you say I Regarding the names, http://www.gisinternals.com/ has daily builds of GDAL and they use the official naming (by that I mean they use what's in GDAL's nmake.opt) which is to add a suffix with version numbering. Its me who also builds GDAL and netCDF for GMT (the cmake scripts now used by ncar, originated in GMT) that use a different naming that saved me lots of troubles with DLLs hell. That naming schema consists in adding the _w64 or _w32 suffix to dlls. So, when a Windows user installs GMT he/she will have an updated GDAL and netCDF dependencies using that convention. But I repeat, that is what I do for GMT. |
OK, back from another system and news.
next, edited
Some troubles of unknown origin
insist
and voilá, in
and no Conda download. |
Indeed I also found that |
…date the different names it has on Windows and *nix