From 7ec30cf1fadb06ffcd13d99e51865a69bb512187 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 --- config.toml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 config.toml diff --git a/config.toml b/config.toml new file mode 100644 index 000000000..23801fa71 --- /dev/null +++ b/config.toml @@ -0,0 +1,4 @@ +# ARM x64 specific, otherwise crash (because of rustc bug) +# see: https://github.com/rust-lang/cargo/issues/6489 +[target.'cfg(all(target_arch = "aarch64"))'] +codegen-units=1 -- GitLab