Repace use of static_nobundle with native_link_modifiers

This fixes warning when building Rust and running tests:
```
warning: library kind `static-nobundle` has been superseded by specifying `-bundle` on library kind `static`. Try `static:-bundle`
warning: `rustc_llvm` (lib) generated 2 warnings (1 duplicate)
```
This commit is contained in:
Mateusz Mikuła
2021-10-23 14:34:33 +02:00
parent cf708558b7
commit a076f2b9b4
6 changed files with 6 additions and 7 deletions

View File

@@ -5,7 +5,6 @@
#![feature(native_link_modifiers_bundle)]
#![feature(nll)]
#![feature(staged_api)]
#![feature(static_nobundle)]
#![feature(c_unwind)]
#![cfg_attr(not(target_env = "msvc"), feature(libc))]