summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2022-04-10 19:41:37 +0000
committerbors <bors@rust-lang.org>2022-04-10 19:41:37 +0000
commit5987128633b6a74c8bcf9cb407864e374143e6aa (patch)
treef2b800aeb614b329febe569f389c0d47167f40dc
parent6e2de912d4ae6c87af422471aa825025aa742c6d (diff)
parent7683ea2832373e71b989eb9a93855ca20bb2fae2 (diff)
downloadrust-libc-5987128633b6a74c8bcf9cb407864e374143e6aa.tar.gz
Auto merge of #2742 - petrochenkov:stabundle, r=Amanieu
Remove use of `feature(static_nobundle)` It's used in "rustc-dep-of-std" mode and prevents removal of this feature from rustc. (No need to publish a new libc version right now, the rustc PR is still waiting on some other work being finished.)
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 3a4dcee706..d87d0d8e1c 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -26,7 +26,7 @@
#![cfg_attr(feature = "rustc-dep-of-std", no_core)]
#![cfg_attr(
feature = "rustc-dep-of-std",
- feature(static_nobundle, native_link_modifiers, native_link_modifiers_bundle)
+ feature(native_link_modifiers, native_link_modifiers_bundle)
)]
#![cfg_attr(libc_const_extern_fn, feature(const_extern_fn))]