Function addObject [src]

Prototype

pub fn addObject(b: *Build, options: ObjectOptions) *Step.Compile

Parameters

b: *Buildoptions: ObjectOptions

Source

pub fn addObject(b: *Build, options: ObjectOptions) *Step.Compile { if (options.root_module != null and options.target != null) { @panic("`root_module` and `target` cannot both be populated"); } return .create(b, .{ .name = options.name, .root_module = options.root_module orelse b.createModule(.{ .root_source_file = options.root_source_file, .target = options.target orelse @panic("`root_module` and `target` cannot both be null"), .optimize = options.optimize, .link_libc = options.link_libc, .single_threaded = options.single_threaded, .pic = options.pic, .strip = options.strip, .unwind_tables = options.unwind_tables, .omit_frame_pointer = options.omit_frame_pointer, .sanitize_thread = options.sanitize_thread, .error_tracing = options.error_tracing, .code_model = options.code_model, }), .kind = .obj, .max_rss = options.max_rss, .use_llvm = options.use_llvm, .use_lld = options.use_lld, .zig_lib_dir = options.zig_lib_dir, }); }