You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is relatively trivial now, and is well documented. An example repository of using a non-vendored, system OpenSSL install with pkg-config to find the OpenSSL installation for the aarch64 architecture is shown.
The logic is quite simple. First, create a Dockerfile with your additional dependencies:
FROM ghcr.io/cross-rs/aarch64-unknown-linux-gnu:edge
RUN dpkg --add-architecture arm64
RUN apt-get update && apt-get install --assume-yes libssl-dev:arm64
The package I'm trying to cross-compile depends on libssl-dev.
I'm trying to cross-compile it to arm64 to benefit from some cost reductions on aws t4g.nano instances,
but I couldn't get it to work.
My thoughts were that I'd need a custom docker image as follows
whereby I would've thought that I should use
libssl-dev:arm64
in the above, but that doesn't exist, eg by running:with the output at https://pastebin.com/7Q6FzRS4
Is there an example of this somewhere?
The text was updated successfully, but these errors were encountered: