Function addSharedLibrary [src]

Deprecated: use b.addLibrary(.{ ..., .linkage = .dynamic }) instead.

Prototype

pub fn addSharedLibrary(b: *Build, options: SharedLibraryOptions) *Step.Compile

Parameters

b: *Buildoptions: SharedLibraryOptions

Source

pub fn addSharedLibrary(b: *Build, options: SharedLibraryOptions) *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(.{ .target = options.target orelse @panic("`root_module` and `target` cannot both be null"), .optimize = options.optimize, .root_source_file = options.root_source_file, .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 = .lib, .linkage = .dynamic, .version = options.version, .max_rss = options.max_rss, .use_llvm = options.use_llvm, .use_lld = options.use_lld, .zig_lib_dir = options.zig_lib_dir, .win32_manifest = options.win32_manifest, }); }