-
Notifications
You must be signed in to change notification settings - Fork 101
Provide a bundled flag for gdal-sys
#517
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
Changes from all commits
d4a9744
b809c89
f62f923
9e0b6e2
e166856
4a47a62
8415209
8507d52
50cfb04
d2fb2cd
73a11b6
db2e94d
0b4a63e
3661c9b
68224c3
6511ba6
46fe054
4606f71
9b5815c
4b494d2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| [submodule "gdal-src/source"] | ||
ChristianBeilschmidt marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| path = gdal-src/source | ||
| url = https://github.com/OSGeo/gdal | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,6 +2,8 @@ | |
|
|
||
| ## Unreleased | ||
|
|
||
| - Add a `bundled` feature for `gdal-sys` that allows to build and statically link a minimal bundled version of gdal during `cargo build` | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We should probably mention that it only supports SQLite, GPKG, GeoTIFF, some other less popular formats, and probably no compression. I'm afraid that users will see this and expect it to work for COG, JPEG2000, NetCDF and so on. Also see https://www.mail-archive.com/[email protected]/msg40172.html.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The following 19 drivers are supported by this configuration according to |
||
|
|
||
| ## 0.17.1 | ||
|
|
||
| ### Added | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| # Updating bundled gdal version for gdal-src | ||
|
|
||
| Perform the following steps: | ||
|
|
||
| ``` | ||
| git submodule init | ||
| git submodule update | ||
| cd gdal-src/source | ||
| git pull | ||
| git checkout v3.8.3 # corresponds to the tag you want to update to | ||
| cd ../../ | ||
| git add gdal-src/source | ||
| git commit -m "Update bundled gdal version to 3.8.4" | ||
| ``` | ||
|
|
||
| These steps assume that there are no fundamental changes to the gdal build system. | ||
|
|
Uh oh!
There was an error while loading. Please reload this page.