| ... | @@ -205,7 +205,7 @@ pub const Target = union(enum) { | ... | @@ -205,7 +205,7 @@ pub const Target = union(enum) { |
| 205 | }, | 205 | }, |
| 206 | }; | 206 | }; |
| 207 | | 207 | |
| 208 | pub fn zigTriple(self: Target, allocator: *std.mem.Allocator) ![]u8 { | 208 | pub fn zigTriple(self: Target, allocator: *mem.Allocator) ![]u8 { |
| 209 | return std.fmt.allocPrint( | 209 | return std.fmt.allocPrint( |
| 210 | allocator, | 210 | allocator, |
| 211 | "{}{}-{}-{}", | 211 | "{}{}-{}-{}", |
| ... | @@ -216,13 +216,13 @@ pub const Target = union(enum) { | ... | @@ -216,13 +216,13 @@ pub const Target = union(enum) { |
| 216 | ); | 216 | ); |
| 217 | } | 217 | } |
| 218 | | 218 | |
| 219 | pub fn allocDescription(self: Target, allocator: *std.mem.Allocator) ![]u8 { | 219 | pub fn allocDescription(self: Target, allocator: *mem.Allocator) ![]u8 { |
| 220 | // TODO is there anything else worthy of the description that is not | 220 | // TODO is there anything else worthy of the description that is not |
| 221 | // already captured in the triple? | 221 | // already captured in the triple? |
| 222 | return self.zigTriple(allocator); | 222 | return self.zigTriple(allocator); |
| 223 | } | 223 | } |
| 224 | | 224 | |
| 225 | pub fn zigTripleNoSubArch(self: Target, allocator: *std.mem.Allocator) ![]u8 { | 225 | pub fn zigTripleNoSubArch(self: Target, allocator: *mem.Allocator) ![]u8 { |
| 226 | return std.fmt.allocPrint( | 226 | return std.fmt.allocPrint( |
| 227 | allocator, | 227 | allocator, |
| 228 | "{}-{}-{}", | 228 | "{}-{}-{}", |
| ... | @@ -232,7 +232,7 @@ pub const Target = union(enum) { | ... | @@ -232,7 +232,7 @@ pub const Target = union(enum) { |
| 232 | ); | 232 | ); |
| 233 | } | 233 | } |
| 234 | | 234 | |
| 235 | pub fn linuxTriple(self: Target, allocator: *std.mem.Allocator) ![]u8 { | 235 | pub fn linuxTriple(self: Target, allocator: *mem.Allocator) ![]u8 { |
| 236 | return std.fmt.allocPrint( | 236 | return std.fmt.allocPrint( |
| 237 | allocator, | 237 | allocator, |
| 238 | "{}-{}-{}", | 238 | "{}-{}-{}", |