zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit c156d51d555441b41f512d854529ea28db95dd50 (tree)
parent a6f33e3dc56eab57ee148c2ec7592540470d582c
Author: Marcio Giaxa <i@mgxm.me>
Date:   Thu, 20 Dec 2018 21:44:18 -0200

freebsd: remove system linker hack

Diffstat:
Mbuild.zig | 3---
1 file changed, 0 insertions(+), 3 deletions(-)

diff --git a/build.zig b/build.zig @@ -299,9 +299,6 @@ fn configureStage2(b: *Builder, exe: var, ctx: Context) !void { } else if (exe.target.isFreeBSD()) { try addCxxKnownPath(b, ctx, exe, "libc++.a", null); exe.linkSystemLibrary("pthread"); - // TODO LLD cannot perform this link. - // See https://github.com/ziglang/zig/issues/1535 - exe.enableSystemLinkerHack(); } else if (exe.target.isDarwin()) { if (addCxxKnownPath(b, ctx, exe, "libgcc_eh.a", "")) {