File tree 4 files changed +2
-12
lines changed
4 files changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -22,26 +22,21 @@ dox() {
22
22
rm -rf " target/doc/${arch} "
23
23
mkdir " target/doc/${arch} "
24
24
25
- export RUSTFLAGS=" --cfg core_arch_docs"
26
- export RUSTDOCFLAGS=" --cfg core_arch_docs"
27
-
28
25
cargo build --verbose --target " ${target} " --manifest-path crates/core_arch/Cargo.toml
29
26
cargo build --verbose --target " ${target} " --manifest-path crates/std_detect/Cargo.toml
30
27
31
28
rustdoc --verbose --target " ${target} " \
32
29
-o " target/doc/${arch} " crates/core_arch/src/lib.rs \
33
30
--edition=2018 \
34
31
--crate-name core_arch \
35
- --library-path " target/${target} /debug/deps" \
36
- --cfg core_arch_docs
32
+ --library-path " target/${target} /debug/deps"
37
33
rustdoc --verbose --target " ${target} " \
38
34
-o " target/doc/${arch} " crates/std_detect/src/lib.rs \
39
35
--edition=2018 \
40
36
--crate-name std_detect \
41
37
--library-path " target/${target} /debug/deps" \
42
38
--extern cfg_if=" $( ls target/" ${target} " /debug/deps/libcfg_if-* .rlib) " \
43
- --extern libc=" $( ls target/" ${target} " /debug/deps/liblibc-* .rlib) " \
44
- --cfg core_arch_docs
39
+ --extern libc=" $( ls target/" ${target} " /debug/deps/liblibc-* .rlib) "
45
40
}
46
41
47
42
dox i686 i686-unknown-linux-gnu
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ readme = "README.md"
13
13
keywords = [" core" , " simd" , " arch" , " intrinsics" ]
14
14
categories = [" hardware-support" , " no-std" ]
15
15
license = " MIT OR Apache-2.0"
16
- build = " build.rs"
17
16
edition = " 2018"
18
17
19
18
[badges ]
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -76,7 +76,6 @@ mod tests {
76
76
}
77
77
78
78
#[ test]
79
- #[ cfg( dont_compile_me) ] // FIXME need to add `v7` upstream in rustc
80
79
fn _rbit_u32 ( ) {
81
80
unsafe {
82
81
assert_eq ! (
You can’t perform that action at this time.
0 commit comments