VIGY5VHRVDZM4YJQ5CAZKQZGA6TE2WWKSTDXQPGFJLJQXKWDBPNAC
7HVVENE7UV5NPZQXEY6QWECLA6X5D6JINDZXG5VIYK6VOUN3DJDAC
4LTHJQPGOWO7IJ73ATFIRJNFBUIPII55434FSD6OMZBP7J2BOPIQC
artifacts: - derploader/zig-out/bin/derploader
artifacts:
- derploader/zig-out/bin/derploader
$zig build
$zig build -Drelease-small=true -Dtarget=x86_64-linux-gnu -Dcpu=sandybridge -Dstrip=true -Dstatic=true strip -s zig-out/bin/derploader
$zig build -Drelease-small=true -Dtarget=x86_64-linux-gnu -Dcpu=sandybridge -Dstrip=true -Dstatic=true
strip -s zig-out/bin/derploader
const strip = b.option(bool, "strip", "strip executable"); const static = b.option(bool, "static", "compile a static executable");
const strip = b.option(bool, "strip", "strip executable");
const static = b.option(bool, "static", "compile a static executable");
if (strip != null) { exe.strip = strip.?; } if (static != null and static.? == true) { exe.linkage = .static; }
if (strip != null) {
exe.strip = strip.?;
}
if (static != null and static.? == true) {
exe.linkage = .static;