From 133708d9396defc46630adc6acd24a493277b7d5 Mon Sep 17 00:00:00 2001 From: Jakub Konka Date: Wed, 27 Apr 2022 13:25:16 +0200 Subject: [PATCH] test: leave a todo note to explicitly specify ABI for targets in the future --- src/test.zig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test.zig b/src/test.zig index a1edae01da..e138afecb9 100644 --- a/src/test.zig +++ b/src/test.zig @@ -174,11 +174,11 @@ const TestManifestConfigDefaults = struct { comptime { var defaults: []const u8 = ""; // TODO should we only return "mainstream" targets by default here? + // TODO we should also specify ABIs explicitly as the backends are + // getting more and more complete // Linux inline for (&[_][]const u8{ "x86_64", "arm", "aarch64" }) |arch| { - inline for (&[_][]const u8{ "gnu", "musl" }) |abi| { - defaults = defaults ++ arch ++ "-linux-" ++ abi ++ ","; - } + defaults = defaults ++ arch ++ "-linux-" ++ ","; } // macOS inline for (&[_][]const u8{ "x86_64", "aarch64" }) |arch| {