this repo has no description
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

build: default PIE to null

Default PIE to null, which then let's the zig compiler choose a default
value. The option is exposed to let packagers choose true or false,
otherwise default to whatever zig has chosen.

Fixes: 92383c2d7bf1
Fixes: #13

+1 -1
+1 -1
build.zig
··· 8 8 const target = b.standardTargetOptions(.{}); 9 9 const optimize = b.standardOptimizeOption(.{}); 10 10 11 - const pie = b.option(bool, "pie", "Build a Position Independent Executable") orelse false; 11 + const pie = b.option(bool, "pie", "Build a Position Independent Executable"); 12 12 13 13 // manpages 14 14 {