| author | |
| committer | |
| log | cbc05e0b1d86d57b533abeedc97e6fb6a648c64b |
| tree | bab6f8017a9a7438862d76fe0d58fde949975627 |
| parent | d70be200d8a388c3fd23aa0e246322300443d58a |
These are produced by rustc: https://rustc-dev-guide.rust-lang.org/backend/libs-and-metadata.html#rlib1 files changed, 3 insertions(+), 1 deletions(-)
src/Compilation.zig+3-1| ... | ... | @@ -5890,7 +5890,9 @@ pub fn hasObjectExt(filename: []const u8) bool { |
| 5890 | 5890 | } |
| 5891 | 5891 | |
| 5892 | 5892 | pub fn hasStaticLibraryExt(filename: []const u8) bool { |
| 5893 | return mem.endsWith(u8, filename, ".a") or mem.endsWith(u8, filename, ".lib"); | |
| 5893 | return mem.endsWith(u8, filename, ".a") or | |
| 5894 | mem.endsWith(u8, filename, ".lib") or | |
| 5895 | mem.endsWith(u8, filename, ".rlib"); | |
| 5894 | 5896 | } |
| 5895 | 5897 | |
| 5896 | 5898 | pub fn hasCExt(filename: []const u8) bool { |