This patch changes how to specify ABI and link name of a native module.
Before:
native "cdecl" mod llvm = "rustllvm" {...}
After:
#[abi = "cdecl"]
#[link_name = "rustllvm"]
native mod llvm {...}
The old optional syntax for ABI and link name is no longer supported.
Fixes issue #547
10 lines
132 B
Rust
10 lines
132 B
Rust
/*
|
|
Can we bind native things?
|
|
*/
|
|
|
|
#[abi = "cdecl"]
|
|
native mod rustrt {
|
|
fn pin_task();
|
|
}
|
|
|
|
fn main() { bind rustrt::pin_task(); }
|