authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-04-16 19:13:46-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-04-16 19:13:46-04:00
logda8403bcdd6fb6928a26e5cb3813d9dc67db2eed
tree8e3e4e71dc24d17b4028069381b6aee0a43df347
parent89763c9a0d9a838439bcc6cd996c0ff2d3d0daca
signaturelock-open Commit is signed but in an unrecognized format.

build.zig: libuserland expects to against libc


1 files changed, 1 insertions(+), 0 deletions(-)

build.zig+1
...@@ -389,6 +389,7 @@ fn addLibUserlandStep(b: *Builder) void {...@@ -389,6 +389,7 @@ fn addLibUserlandStep(b: *Builder) void {
389 else389 else
390 b.addStaticLibrary("userland", "src-self-hosted/stage1.zig");390 b.addStaticLibrary("userland", "src-self-hosted/stage1.zig");
391 artifact.disable_gen_h = true;391 artifact.disable_gen_h = true;
392 artifact.linkSystemLibrary("c");
392 const libuserland_step = b.step("libuserland", "Build the userland compiler library for use in stage1");393 const libuserland_step = b.step("libuserland", "Build the userland compiler library for use in stage1");
393 libuserland_step.dependOn(&artifact.step);394 libuserland_step.dependOn(&artifact.step);
394395