File tree Expand file tree Collapse file tree 4 files changed +2
-12
lines changed Expand file tree Collapse file tree 4 files changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -22,26 +22,21 @@ dox() {
2222 rm -rf " target/doc/${arch} "
2323 mkdir " target/doc/${arch} "
2424
25- export RUSTFLAGS=" --cfg core_arch_docs"
26- export RUSTDOCFLAGS=" --cfg core_arch_docs"
27-
2825 cargo build --verbose --target " ${target} " --manifest-path crates/core_arch/Cargo.toml
2926 cargo build --verbose --target " ${target} " --manifest-path crates/std_detect/Cargo.toml
3027
3128 rustdoc --verbose --target " ${target} " \
3229 -o " target/doc/${arch} " crates/core_arch/src/lib.rs \
3330 --edition=2018 \
3431 --crate-name core_arch \
35- --library-path " target/${target} /debug/deps" \
36- --cfg core_arch_docs
32+ --library-path " target/${target} /debug/deps"
3733 rustdoc --verbose --target " ${target} " \
3834 -o " target/doc/${arch} " crates/std_detect/src/lib.rs \
3935 --edition=2018 \
4036 --crate-name std_detect \
4137 --library-path " target/${target} /debug/deps" \
4238 --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) "
4540}
4641
4742dox i686 i686-unknown-linux-gnu
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ readme = "README.md"
1313keywords = [" core" , " simd" , " arch" , " intrinsics" ]
1414categories = [" hardware-support" , " no-std" ]
1515license = " MIT OR Apache-2.0"
16- build = " build.rs"
1716edition = " 2018"
1817
1918[badges ]
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -76,7 +76,6 @@ mod tests {
7676 }
7777
7878 #[ test]
79- #[ cfg( dont_compile_me) ] // FIXME need to add `v7` upstream in rustc
8079 fn _rbit_u32 ( ) {
8180 unsafe {
8281 assert_eq ! (
You can’t perform that action at this time.
0 commit comments