kubkon review changes: 2

- drop --verbose-link printing until ready to put in driver frontend
This commit is contained in:
Michael Dusan 2023-09-23 12:31:58 -04:00
parent 9357973912
commit f6877fbc49
No known key found for this signature in database
GPG Key ID: ED4C5BA849FA1B74

View File

@ -351,20 +351,6 @@ pub fn linkWithZld(
}
Compilation.dump_argv(argv.items);
print: {
std.debug.getStderrMutex().lock();
defer std.debug.getStderrMutex().unlock();
const stderr = std.io.getStdErr().writer();
if (options.lib_dirs.len != 0) {
nosuspend stderr.print("Library search paths:\n", .{}) catch break :print;
for (options.lib_dirs) |dir| nosuspend stderr.print("\t{s}\n", .{dir}) catch break :print;
}
if (options.framework_dirs.len != 0) {
nosuspend stderr.print("Framework search paths:\n", .{}) catch break :print;
for (options.framework_dirs) |dir| nosuspend stderr.print("\t{s}\n", .{dir}) catch break :print;
}
}
}
var dependent_libs = std.fifo.LinearFifo(MachO.DylibReExportInfo, .Dynamic).init(arena);