rust/tests/run-make/pass-linker-flags-from-dep/rust_dep_attr.rs
zetanumbers f7617c1cd4 Enable link-arg link kind inside of #[link] attribute
- Implement link-arg as an attribute
- Apply suggestions from review
  - Co-authored-by: Vadim Petrochenkov <vadim.petrochenkov@gmail.com>
- Add unstable book entry
2023-11-30 08:26:13 -08:00

15 lines
305 B
Rust

#![feature(link_arg_attribute)]
#[link(kind = "static", name = "native_dep_1", modifiers = "-bundle")]
#[link(kind = "link-arg", name = "some_flag")]
#[link(kind = "static", name = "native_dep_2", modifiers = "-bundle")]
extern "C" {
pub fn foo();
}
pub fn f() {
unsafe {
foo();
}
}