mirror of
https://github.com/ziglang/zig.git
synced 2026-01-06 21:43:25 +00:00
link: correctly print debug linker invocation
This commit is contained in:
parent
8db9d04e6f
commit
00efbfa054
@ -815,9 +815,9 @@ void codegen_link(CodeGen *g, const char *out_file) {
|
||||
|
||||
|
||||
if (g->verbose) {
|
||||
fprintf(stderr, "link");
|
||||
for (size_t i = 0; i < lj.args.length; i += 1) {
|
||||
fprintf(stderr, " %s", lj.args.at(i));
|
||||
const char *space = (i != 0) ? " " : "";
|
||||
fprintf(stderr, "%s%s", space, lj.args.at(i));
|
||||
}
|
||||
fprintf(stderr, "\n");
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user