| author | |
| committer | |
| log | c2c3177d8246bebbeb8d4dfd9349318f36122e90 |
| tree | 6011f39e8bca12c56a6c2158346eed7240462cbe |
| parent | a28c244afb49b505e945e00fbbe9929741c566ee |
We don't support debug information on platforms that are not tier-1,
but it shouldn't be a hard error that completely prevents compilation.1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/debug.zig+1-1| ... | ... | @@ -666,7 +666,7 @@ pub fn openSelfDebugInfo(allocator: *mem.Allocator) anyerror!DebugInfo { |
| 666 | 666 | .macos, |
| 667 | 667 | .windows, |
| 668 | 668 | => return DebugInfo.init(allocator), |
| 669 | else => @compileError("openSelfDebugInfo unsupported for this platform"), | |
| 669 | else => return error.UnsupportedDebugInfo, | |
| 670 | 670 | } |
| 671 | 671 | } |
| 672 | 672 | } |