File tree Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ This is a **work in progress**.
12
12
* [ Documentation - x86\_ 64] [ x86_64 ]
13
13
* [ Documentation - arm] [ arm ]
14
14
* [ Documentation - aarch64] [ aarch64 ]
15
+ * [ Documentation - powerpc] [ powerpc ]
16
+ * [ Documentation - powerpc64] [ powerpc64 ]
15
17
* [ How to get started] [ contrib ]
16
18
* [ How to help implement intrinsics] [ help-implement ]
17
19
@@ -21,6 +23,8 @@ This is a **work in progress**.
21
23
[ x86_64 ] : https://rust-lang-nursery.github.io/stdsimd/x86_64/stdsimd/
22
24
[ arm ] : https://rust-lang-nursery.github.io/stdsimd/arm/stdsimd/
23
25
[ aarch64 ] : https://rust-lang-nursery.github.io/stdsimd/aarch64/stdsimd/
26
+ [ powerpc ] : https://rust-lang-nursery.github.io/stdsimd/powerpc/stdsimd/
27
+ [ powerpc64 ] : https://rust-lang-nursery.github.io/stdsimd/powerpc64/stdsimd/
24
28
25
29
### Approach
26
30
Original file line number Diff line number Diff line change @@ -24,6 +24,10 @@ dox() {
24
24
25
25
cargo build --target $target
26
26
27
+ rustdoc --target $target \
28
+ -o target/doc/$arch coresimd/src/lib.rs \
29
+ --crate-name coresimd \
30
+ --library-path target/$target /debug/deps
27
31
rustdoc --target $target \
28
32
-o target/doc/$arch src/lib.rs \
29
33
--crate-name stdsimd \
Original file line number Diff line number Diff line change 7
7
//! * [`x86_64`](https://rust-lang-nursery.github.io/stdsimd/x86_64/stdsimd/)
8
8
//! * [arm](https://rust-lang-nursery.github.io/stdsimd/arm/stdsimd/)
9
9
//! * [aarch64](https://rust-lang-nursery.github.io/stdsimd/aarch64/stdsimd/)
10
+ //! * [powerpc](https://rust-lang-nursery.github.io/stdsimd/powerpc/stdsimd/)
11
+ //! * [powerpc64](https://rust-lang-nursery.github.io/stdsimd/powerpc64/stdsimd/)
10
12
//!
11
13
//! # Overview
12
14
//!
@@ -137,6 +139,7 @@ pub use coresimd::__unstable_detect_feature;
137
139
138
140
/// Platform dependent vendor intrinsics.
139
141
pub mod vendor {
142
+ #[ doc( inline) ]
140
143
pub use coresimd:: vendor:: * ;
141
144
}
142
145
@@ -152,6 +155,7 @@ pub mod __vendor_runtime {
152
155
153
156
/// Platform independent SIMD vector types and operations.
154
157
pub mod simd {
158
+ #[ doc( inline) ]
155
159
pub use coresimd:: simd:: * ;
156
160
}
157
161
You can’t perform that action at this time.
0 commit comments