link-section
A crate for defining link sections in Rust.
Sections are defined using the #[section] macro. This creates an associated
data and text section, and items decorated with the #[in_section] macro
are placed into the associated section.
Platform Support
| Platform | Support |
|---|---|
| Linux | ✅ Supported, uses orphan section handling (§1) |
| macOS | ✅ Fully supported |
| Windows | ✅ Fully supported |
| WASM | ✅ Fully supported |
| Other LLVM/GCC platforms | ✅ Supported, uses orphan section handling (§1) |
(§1) Orphan section handling is a feature of the linker that allows sections to be defined without a pre-defined name.
Typed Sections
Typed sections provide a section where all items are of a specific, sized type. The typed section may be accessed as a slice of the type at zero cost if desired.
fn items are special-cased and stored as function pointers in the typed
section.
Usage
Create an untyped section using the #[section] macro that keeps related items
in close proximity:
use ;
pub static CODE_SECTION: Section;
Create a typed section using the #[section] macro that stores items of a
specific, sized type: