structstd.Build.AssemblyOptions[src]

Fields

name: []const u8
source_file: LazyPath
target: ResolvedTarget

To choose the same computer as the one building the package, pass the host field of the package's Build instance.

optimize: std.builtin.OptimizeMode
max_rss: usize = 0
zig_lib_dir: ?LazyPath = null

Source Code

Source code
pub const AssemblyOptions = struct {
    name: []const u8,
    source_file: LazyPath,
    /// To choose the same computer as the one building the package, pass the
    /// `host` field of the package's `Build` instance.
    target: ResolvedTarget,
    optimize: std.builtin.OptimizeMode,
    max_rss: usize = 0,
    zig_lib_dir: ?LazyPath = null,
}