@@ -7,7 +7,7 @@ git submodule init
77git submodule update
88cd gdal-src/source
99git pull
10- git checkout v3.8.3 # corresponds to the tag you want to update to
10+ git checkout v3.8.4 # corresponds to the tag you want to update to
1111cd ../../
1212git add gdal-src/source
1313git commit -m "Update bundled gdal version to 3.8.4"
@@ -18,13 +18,13 @@ These steps assume that there are no fundamental changes to the gdal build syste
1818# Generating Bindings
1919
2020``` bash
21- docker run -it --rm -v ./gdal-sys:/gdal-sys:z -w /gdal-sys -e GDAL_VERSION=3_11 ghcr.io/osgeo/gdal:ubuntu-full-3.11.4 bash
21+ docker run -it --rm -v ./gdal-sys:/gdal-sys:z -w /gdal-sys -e GDAL_VERSION=3_12 ghcr.io/osgeo/gdal:ubuntu-full-3.12.0 bash
2222# everything from now on is inside of the container
2323
2424# install mingw toolchain for generating windows bindings
2525# install libclang for bindgen
2626# gcc-i686-linux-gnu to generate bindings for 32 bit linux
27- apt update && apt install -y libclang-dev mingw-w64 gcc-i686-linux-gnu pkg-config rustfmt
27+ apt update && apt install -y libclang-dev mingw-w64 gcc-i686-linux-gnu pkg-config rustfmt xz-utils
2828
2929# install bindgen
3030curl --proto ' =https' --tlsv1.2 -LsSf https://github.com/rust-lang/rust-bindgen/releases/download/v0.71.1/bindgen-cli-installer.sh | sh
@@ -33,7 +33,7 @@ source $HOME/.cargo/env
3333# create the output directory for the prebuild bindings if necessary
3434mkdir /gdal-sys/prebuilt-bindings/$GDAL_VERSION
3535
36- # if you update these command consider updating the command in gdal-sys/build.rs
36+ # if you update these commands consider updating the command in gdal-sys/build.rs
3737# make sure to use the same bindgen flags (everything before wrapper) for
3838# all targets
3939#
0 commit comments