Struct nasm_rs::Build [] [src]

pub struct Build { /* fields omitted */ }

Methods

impl Build
[src]

[src]

[src]

Add a file which will be compiled

e.g. "foo.s"

[src]

Set multiple files

[src]

Add a directory to the -I include path

[src]

Pre-define a macro with an optional value

[src]

Configures whether the assembler will generate debug information.

This option is automatically scraped from the DEBUG environment variable by build scripts (only enabled when the profile is "debug"), so it's not required to call this function.

[src]

Add an arbitrary flag to the invocation of the assembler

e.g. "-Fdwarf"

[src]

Configures the target this configuration will be compiling for.

This option is automatically scraped from the TARGET environment variable by build scripts, so it's not required to call this function.

[src]

Configures the output directory where all object files and static libraries will be located.

This option is automatically scraped from the OUT_DIR environment variable by build scripts, so it's not required to call this function.

[src]

Configures the tool used to assemble archives.

This option is automatically determined from the target platform or a number of environment variables, so it's not required to call this function.

[src]

Configures path to nasm command

[src]

Run the compiler, generating the file output

The name output should be the base name of the library, without file extension, and without "lib" prefix.

The output file will have target-specific name, such as lib*.a (non-MSVC) or *.lib (MSVC).

[src]

Run the compiler, generating .o files

The files can be linked in a separate step, e.g. passed to cc

Trait Implementations

Auto Trait Implementations

impl Send for Build

impl Sync for Build