| ... | ... | @@ -2498,6 +2498,9 @@ fn buildOutputType( |
| 2498 | 2498 | // this ignores plain --sort-common |
| 2499 | 2499 | } else if (mem.eql(u8, arg, "-rpath") or mem.eql(u8, arg, "--rpath") or mem.eql(u8, arg, "-R")) { |
| 2500 | 2500 | try create_module.rpath_list.append(arena, linker_args_it.nextOrFatal()); |
| 2501 | } else if (mem.eql(u8, arg, "-rpath-link") or mem.eql(u8, arg, "--rpath-link")) { |
| 2502 | _ = linker_args_it.nextOrFatal(); |
| 2503 | warn("rpath-link option is unimplemented and ignored", .{}); |
| 2501 | 2504 | } else if (mem.eql(u8, arg, "--subsystem")) { |
| 2502 | 2505 | subsystem = try parseSubsystem(linker_args_it.nextOrFatal()); |
| 2503 | 2506 | } else if (mem.eql(u8, arg, "-I") or |