nasm-rs 0.0.3

Run NASM during your Cargo build.
Documentation

NASM

Run NASM during your Cargo build.

extern crate nasm;

fn main() {
    nasm::compile_library("libfoo.a", &["foo.s", "bar.s"]);
}