Open
Description
Problem
I'm trying to build an application, this time to build aarch64 container image on x86-64 machine.
My machine is a beefy 5900X with 128G of RAM, but my system runs out of memory (Cargo eats it all) when cross-compiling aarch64 container.
Steps
- Clone this branch: https://github.com/nazar-pc/subspace/tree/cargo-memory-bug-aarch64
- Have Docker installed on Linux x86-64 machine
- Run
docker buildx build --platform linux/arm64 -t test -f Dockerfile-farmer .
- Observe system freezing/crashing because of running out of memory
Possible Solution(s)
No response
Notes
x86-64 build on the same machine works fine with ~20G of system memory.
Not entirely sure if this is Cargo's fault or QEMU or something else, but I used similar QEMU-based setups before and never seen anything remotely like this.
Version
cargo 1.60.0-nightly (c082648 2022-02-08)
release: 1.60.0-nightly
commit-hash: c082648646cbb2be266df9ecbcdc253058158d68
commit-date: 2022-02-08
host: aarch64-unknown-linux-gnu
libgit2: 1.3.0 (sys:0.13.23 vendored)
libcurl: 7.80.0-DEV (sys:0.4.51+curl-7.80.0 vendored ssl:OpenSSL/1.1.1m)
os: Linux [64-bit]
UPD: Tried the most recent version, still the same issue:
cargo 1.62.0-nightly (dba5baf 2022-04-13)
release: 1.62.0-nightly
commit-hash: dba5baf4345858c591517b24801902a062c399f8
commit-date: 2022-04-13
host: aarch64-unknown-linux-gnu
libgit2: 1.4.2 (sys:0.14.2 vendored)
libcurl: 7.80.0-DEV (sys:0.4.51+curl-7.80.0 vendored ssl:OpenSSL/1.1.1m)
os: Linux [64-bit]