From 0d87372a7f265493cabd4c821966b1ad54fd7267 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Moreau?= <cem.moreau@gmail.com> Date: Mon, 24 May 2021 09:14:04 +0000 Subject: [PATCH] fix: #1429 compilation on ARM x64 --- .cargo/config | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.cargo/config b/.cargo/config index 1f509acb1..194f2035c 100644 --- a/.cargo/config +++ b/.cargo/config @@ -9,3 +9,6 @@ uc = "update -p duniter-core" ug = "update -p duniter-gva" ugc = "update -p duniter-gva-conf" xtask = "run --package xtask --" + +[target.'cfg(all(target_arch = "aarch64"))'] +rustflags = ["-Ccodegen-units=1"] -- GitLab