Replies: 1 comment 4 replies
-
Found an answer. Deleted the docker container and added this Cross.toml to my project: [target.aarch64-unknown-linux-gnu]
pre-build = [
"dpkg --add-architecture $CROSS_DEB_ARCH",
"ln -snf /usr/share/zoneinfo/America/Los_Angeles /etc/localtime && echo America/Los_Angeles > /etc/timezone",
"apt-get update && apt-get --assume-yes install libgdal-dev:$CROSS_DEB_ARCH",
] |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to cross compile a program that uses gdal. I built the container using this Dockerfile in order to include libgdal-dev:
But, I'm getting this error:
Anyone have any suggestions?
Beta Was this translation helpful? Give feedback.
All reactions