Fix missing remaining compiler specific cfg information
This commit is contained in:
parent
5728bd64b4
commit
30a20f8c83
2 changed files with 10 additions and 1 deletions
|
@ -74,6 +74,7 @@
|
||||||
not(any(test, bootstrap)),
|
not(any(test, bootstrap)),
|
||||||
any(not(feature = "miri-test-libstd"), test, doctest),
|
any(not(feature = "miri-test-libstd"), test, doctest),
|
||||||
no_global_oom_handling,
|
no_global_oom_handling,
|
||||||
|
not(no_global_oom_handling),
|
||||||
target_has_atomic = "ptr"
|
target_has_atomic = "ptr"
|
||||||
))
|
))
|
||||||
)]
|
)]
|
||||||
|
|
|
@ -195,7 +195,15 @@
|
||||||
test(no_crate_inject, attr(deny(warnings))),
|
test(no_crate_inject, attr(deny(warnings))),
|
||||||
test(attr(allow(dead_code, deprecated, unused_variables, unused_mut)))
|
test(attr(allow(dead_code, deprecated, unused_variables, unused_mut)))
|
||||||
)]
|
)]
|
||||||
#![cfg_attr(not(bootstrap), doc(cfg_hide(not(test), not(any(test, bootstrap)))))]
|
#![cfg_attr(
|
||||||
|
not(bootstrap),
|
||||||
|
doc(cfg_hide(
|
||||||
|
not(test),
|
||||||
|
not(any(test, bootstrap)),
|
||||||
|
no_global_oom_handling,
|
||||||
|
not(no_global_oom_handling)
|
||||||
|
))
|
||||||
|
)]
|
||||||
// Don't link to std. We are std.
|
// Don't link to std. We are std.
|
||||||
#![no_std]
|
#![no_std]
|
||||||
#![warn(deprecated_in_future)]
|
#![warn(deprecated_in_future)]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue