authorgravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2022-04-27 13:25:16+02:00
committergravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2022-04-28 18:35:01+02:00
log133708d9396defc46630adc6acd24a493277b7d5
treebe991c4b69808999760aa5ac6c4bd1669fbec54c
parent0998185f7762e029e037cbd77243965a78b2299e

test: leave a todo note to explicitly specify ABI for targets in the future


1 files changed, 3 insertions(+), 3 deletions(-)

src/test.zig+3-3
......@@ -174,11 +174,11 @@ const TestManifestConfigDefaults = struct {
174174 comptime {
175175 var defaults: []const u8 = "";
176176 // TODO should we only return "mainstream" targets by default here?
177 // TODO we should also specify ABIs explicitly as the backends are
178 // getting more and more complete
177179 // Linux
178180 inline for (&[_][]const u8{ "x86_64", "arm", "aarch64" }) |arch| {
179 inline for (&[_][]const u8{ "gnu", "musl" }) |abi| {
180 defaults = defaults ++ arch ++ "-linux-" ++ abi ++ ",";
181 }
181 defaults = defaults ++ arch ++ "-linux-" ++ ",";
182182 }
183183 // macOS
184184 inline for (&[_][]const u8{ "x86_64", "aarch64" }) |arch| {