| ... | ... | @@ -903,10 +903,10 @@ fn linkWithLLD(self: *MachO, comp: *Compilation) !void { |
| 903 | 903 | self.base.allocator.free(result.stderr); |
| 904 | 904 | } |
| 905 | 905 | if (result.stdout.len != 0) { |
| 906 | | log.debug("unexpected LD stdout: {s}", .{result.stdout}); |
| 906 | log.warn("unexpected LD stdout: {s}", .{result.stdout}); |
| 907 | 907 | } |
| 908 | 908 | if (result.stderr.len != 0) { |
| 909 | | log.debug("unexpected LD stderr: {s}", .{result.stderr}); |
| 909 | log.warn("unexpected LD stderr: {s}", .{result.stderr}); |
| 910 | 910 | } |
| 911 | 911 | if (result.term != .Exited or result.term.Exited != 0) { |
| 912 | 912 | // TODO parse this output and surface with the Compilation API rather than |
| ... | ... | @@ -971,7 +971,7 @@ fn linkWithLLD(self: *MachO, comp: *Compilation) !void { |
| 971 | 971 | } |
| 972 | 972 | |
| 973 | 973 | if (stderr.len != 0) { |
| 974 | | log.debug("unexpected LLD stderr:\n{s}", .{stderr}); |
| 974 | log.warn("unexpected LLD stderr:\n{s}", .{stderr}); |
| 975 | 975 | } |
| 976 | 976 | } |
| 977 | 977 | } |
| ... | ... | @@ -981,11 +981,11 @@ fn linkWithLLD(self: *MachO, comp: *Compilation) !void { |
| 981 | 981 | // Update the file with the digest. If it fails we can continue; it only |
| 982 | 982 | // means that the next invocation will have an unnecessary cache miss. |
| 983 | 983 | Cache.writeSmallFile(directory.handle, id_symlink_basename, &digest) catch |err| { |
| 984 | | log.debug("failed to save linking hash digest file: {s}", .{@errorName(err)}); |
| 984 | log.warn("failed to save linking hash digest file: {s}", .{@errorName(err)}); |
| 985 | 985 | }; |
| 986 | 986 | // Again failure here only means an unnecessary cache miss. |
| 987 | 987 | man.writeManifest() catch |err| { |
| 988 | | log.debug("failed to write cache manifest when linking: {s}", .{@errorName(err)}); |
| 988 | log.warn("failed to write cache manifest when linking: {s}", .{@errorName(err)}); |
| 989 | 989 | }; |
| 990 | 990 | // We hang on to this lock so that the output file path can be used without |
| 991 | 991 | // other processes clobbering it. |