mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-12 04:02:19 +01:00
13 lines
352 B
Diff
13 lines
352 B
Diff
diff --git a/build.zig b/build.zig
|
|
index 92e964e..d3e43ae 100644
|
|
--- a/build.zig
|
|
+++ b/build.zig
|
|
@@ -33,6 +33,7 @@ pub fn build(b: *std.build.Builder) void {
|
|
const exe = b.addExecutable("aercbook", "src/main.zig");
|
|
exe.setTarget(target);
|
|
exe.setBuildMode(mode);
|
|
+ exe.pie = true;
|
|
exe.install();
|
|
|
|
const run_cmd = exe.run();
|