From 94740c72517de6dce4b272258bc9f4df657f8878 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1ty=C3=A1s=20Mustoha?= Date: Mon, 1 Feb 2016 16:55:27 +0100 Subject: [PATCH] Fix final linking step on AArch64 --- components/servo/.cargo/config | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/components/servo/.cargo/config b/components/servo/.cargo/config index 7e35e641e35..dffe440072c 100644 --- a/components/servo/.cargo/config +++ b/components/servo/.cargo/config @@ -5,3 +5,7 @@ ar = "arm-linux-androideabi-ar" [target.arm-unknown-linux-gnueabihf] linker = "arm-linux-gnueabihf-gcc" ar = "arm-linux-gnueabihf-ar" + +[target.aarch64-unknown-linux-gnu] +linker = "aarch64-linux-gnu-gcc" +ar = "aarch64-linux-gnu-ar"