From f73006a24f8ec9372d4f8ed4a94054f5bd8ff1fb Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Sun, 25 Sep 2016 21:48:43 +0200 Subject: [PATCH] Fix link syntax (#228) --- blog/additional-resource/cross-compile-libcore.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/additional-resource/cross-compile-libcore.md b/blog/additional-resource/cross-compile-libcore.md index 3840beb0..3e3084ee 100644 --- a/blog/additional-resource/cross-compile-libcore.md +++ b/blog/additional-resource/cross-compile-libcore.md @@ -13,7 +13,7 @@ The core library is a dependency-free library that is added implicitly when usin Thanks to [rustup], cross-compilation for [official target triples] is pretty easy today: Just execute `rustup target add x86_64-unknown-linux-gnu`. [rustup]: https://rustup.rs -[official target triples]: [target triple]: https://github.com/japaric/rust-cross#the-target-triple +[official target triples]: https://github.com/japaric/rust-cross#the-target-triple ## xargo If you're using a _custom target specification_, the `rustup` method doesn't work. Instead, you can use [xargo]. Xargo is a wrapper for cargo that eases cross compilation. We can install it by executing: