x64<em>static</em>linker at crates.io x64<em>static</em>linker at docs.rs

x64staticlinker

x86_64 static linker

Get Started

How to use as an linker command

cargo build ./target/debug/x64_static_linker <object-file>

How to use as a Rust crate

See documentation

```rust use x64staticlinker;

fn main() -> Result<(), Box>{ // you can pass a file(or string). let elfbuilder = x64staticlinker::staticlink_with("obj.o")?;

elf_builder.generate_elf_file(0o644);

Ok(())

} ```

Dependencies