authorgravatar for markfirmware@users.noreply.github.commarkfirmware <markfirmware@users.noreply.github.com> 2020-10-01 13:15:35-04:00
committergravatar for noreply@github.comGitHub <noreply@github.com> 2020-10-01 13:15:35-04:00
log8acfcf4e0d2edc4b66a0fe80d5fbb9c8898248bb
treecad9537ff86dd1be3fd8363151754c61839d7fb5
parentbf0afaa876391571f6072650bf450356b26c928d
signature Signed by PGP key 4AEE18F83AFDEB23

Update build.zig

Fixes #6477

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

lib/std/build.zig+1-1
......@@ -2168,7 +2168,7 @@ pub const LibExeObjStep = struct {
21682168 }
21692169
21702170 if (self.linker_script) |linker_script| {
2171 zig_args.append("--linker-script") catch unreachable;
2171 try zig_args.append("--script");
21722172 zig_args.append(builder.pathFromRoot(linker_script)) catch unreachable;
21732173 }
21742174