Commit 133708d939

Jakub Konka <kubkon@jakubkonka.com>
2022-04-27 13:25:16
test: leave a todo note to explicitly specify ABI for targets in the future
1 parent 0998185
Changed files (1)
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| {