remove .pic = true

pull/9949/head
Bart Louwers 2025-12-18 01:43:32 +01:00
parent c90061b765
commit 83cfa7d202
1 changed files with 0 additions and 3 deletions

View File

@ -10,7 +10,6 @@ pub fn build(b: *std.Build) !void {
.root_source_file = b.path("main.zig"),
.target = target,
.optimize = optimize,
.pic = true,
});
const lib = b.addLibrary(.{
@ -18,7 +17,6 @@ pub fn build(b: *std.Build) !void {
.root_module = b.createModule(.{
.target = target,
.optimize = optimize,
.pic = true,
}),
.linkage = .static,
});
@ -113,7 +111,6 @@ pub fn build(b: *std.Build) !void {
.root_source_file = b.path("main.zig"),
.target = target,
.optimize = optimize,
.pic = true,
}),
});
test_exe.linkLibrary(lib);