We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
As of today it is not that well described how to cross-compile. Do we need to improve that?
Using --platform seems to work
--platform
docker build -f app/Dockerfile --progress=plain --platform=linux/arm64 -t ex5:latest .
We also have a build script, but not really well described how to actively use it (in a devcontainer)
apt-get install g++-aarch64-linux-gnu ./install_dependencies.sh -x aarch64 ./build.sh -x aarch64
apt-get install g++-aarch64-linux-gnu
./install_dependencies.sh -x aarch64
./build.sh -x aarch64
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Question
As of today it is not that well described how to cross-compile. Do we need to improve that?
Example 1: Doing a docker build
Using
--platform
seems to workdocker build -f app/Dockerfile --progress=plain --platform=linux/arm64 -t ex5:latest .
Example 2: Using build script
We also have a build script, but not really well described how to actively use it (in a devcontainer)
apt-get install g++-aarch64-linux-gnu
./install_dependencies.sh -x aarch64
./build.sh -x aarch64
The text was updated successfully, but these errors were encountered: