We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be5ad7d commit 65601c5Copy full SHA for 65601c5
src/lib.rs
@@ -40,6 +40,12 @@
40
#![cfg_attr(all(target_os = "macos", target_arch = "x86"), doc(
41
html_root_url = "https://doc.rust-lang.org/libc/i686-apple-darwin"
42
))]
43
+#![cfg_attr(all(target_os = "ios", target_arch = "x86_64"), doc(
44
+ html_root_url = "https://doc.rust-lang.org/libc/x86_64-apple-ios"
45
+))]
46
+#![cfg_attr(all(target_os = "ios", target_arch = "x86"), doc(
47
+ html_root_url = "https://doc.rust-lang.org/libc/i686-apple-ios"
48
49
#![cfg_attr(all(windows, target_arch = "x86_64", target_env = "gnu"), doc(
50
html_root_url = "https://doc.rust-lang.org/libc/x86_64-pc-windows-gnu"
51
0 commit comments