x86_64 static linker
cargo build ./target/debug/x64_static_linker <object-file>
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(())
} ```