From 65601c59e6ea95be560cfb8d34e424331f307b6b Mon Sep 17 00:00:00 2001 From: Alex Crichton <alex@alexcrichton.com> Date: Thu, 29 Oct 2015 22:10:53 -0700 Subject: [PATCH] Document iOS triples --- src/lib.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 797c5394..85aa6200 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -40,6 +40,12 @@ #![cfg_attr(all(target_os = "macos", target_arch = "x86"), doc( html_root_url = "https://doc.rust-lang.org/libc/i686-apple-darwin" ))] +#![cfg_attr(all(target_os = "ios", target_arch = "x86_64"), doc( + html_root_url = "https://doc.rust-lang.org/libc/x86_64-apple-ios" +))] +#![cfg_attr(all(target_os = "ios", target_arch = "x86"), doc( + html_root_url = "https://doc.rust-lang.org/libc/i686-apple-ios" +))] #![cfg_attr(all(windows, target_arch = "x86_64", target_env = "gnu"), doc( html_root_url = "https://doc.rust-lang.org/libc/x86_64-pc-windows-gnu" ))] -- GitLab