1
Fork 0

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

@ -1,5 +1,5 @@
#![feature(nll)]
#![feature(static_nobundle)]
#![feature(native_link_modifiers)]
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
// NOTE: This crate only exists to allow linking on mingw targets.