Document iOS triples

This commit is contained in:
Alex Crichton 2015-10-29 22:10:53 -07:00
parent be5ad7d090
commit 65601c59e6

View File

@ -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"
))]