build.zig: -Dlib-files-only skips installing self-hosted

This commit is contained in:
Andrew Kelley 2020-05-16 01:22:56 -04:00
parent 294bfb3321
commit a286b5de38

View File

@ -53,7 +53,6 @@ pub fn build(b: *Builder) !void {
exe.setBuildMode(mode);
test_step.dependOn(&exe.step);
b.default_step.dependOn(&exe.step);
exe.install();
const skip_release = b.option(bool, "skip-release", "Main test suite skips release builds") orelse false;
const skip_release_small = b.option(bool, "skip-release-small", "Main test suite skips release-small builds") orelse skip_release;
@ -70,6 +69,9 @@ pub fn build(b: *Builder) !void {
try configureStage2(b, exe, ctx);
}
if (!only_install_lib_files) {
exe.install();
}
const link_libc = b.option(bool, "force-link-libc", "Force self-hosted compiler to link libc") orelse false;
if (link_libc) exe.linkLibC();