devcontainer: add x86_64 OpenSSL dev libs for cross-compilation#3095
Merged
devcontainer: add x86_64 OpenSSL dev libs for cross-compilation#3095
Conversation
The Solana SDK 2.3.x upgrade introduced a dependency on solana-secp256r1-program which requires openssl-sys. This breaks goreleaser cross-compilation on arm64 devcontainers targeting x86_64. Add libssl-dev:amd64 and set PKG_CONFIG_ALLOW_CROSS=1 so the openssl-sys build script can find the x86_64 OpenSSL headers.
packethog
approved these changes
Feb 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary of Changes
libssl-dev:amd64and enabledpkgmulti-arch support in the devcontainer soopenssl-sys(required by Solana SDK 2.3.x'ssolana-secp256r1-program) can build when cross-compiling from arm64 to x86_64PKG_CONFIG_ALLOW_CROSS=1so pkg-config returns x86_64 results during cross-compilationsolana-secp256r1-programdependencyDiff Breakdown
Small, focused build-environment fix.
Key files (click to expand)
.devcontainer/Dockerfile— add amd64 architecture, installlibssl-dev:amd64, setPKG_CONFIG_ALLOW_CROSS=1Testing Verification