From 2efc18aa3b117ebe55922ba8d0590397217fddd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1ty=C3=A1s=20Mustoha?= Date: Thu, 18 Jun 2015 18:38:23 +0200 Subject: [PATCH] Fix ARM linker --- components/servo/.cargo/config | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/components/servo/.cargo/config b/components/servo/.cargo/config index fbeabb1346a..66543bb1098 100644 --- a/components/servo/.cargo/config +++ b/components/servo/.cargo/config @@ -3,3 +3,7 @@ paths = ["../../support/android-rs-glue"] [target.arm-linux-androideabi] linker = "../../target/debug/apk-builder" ar = "arm-linux-androideabi-ar" + +[target.arm-unknown-linux-gnueabihf] +linker = "arm-linux-gnueabihf-gcc" +ar = "arm-linux-gnueabihf-ar"