| author | |
| committer | |
| log | 427a212e3865ba73bc6df63c71ce2849ae2de583 |
| tree | d419247e6e3ef837a4a307f3caee407028f9777c |
| parent | fc67e5f843ae358747bac57f2ae7c816a2ccb4df |
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,7 +666,7 @@ pub fn openSelfDebugInfo(allocator: *mem.Allocator) anyerror!DebugInfo { |
| 666 | .macos, | 666 | .macos, |
| 667 | .windows, | 667 | .windows, |
| 668 | => return DebugInfo.init(allocator), | 668 | => return DebugInfo.init(allocator), |
| 669 | else => @compileError("openSelfDebugInfo unsupported for this platform"), | 669 | else => return error.UnsupportedDebugInfo, |
| 670 | } | 670 | } |
| 671 | } | 671 | } |
| 672 | } | 672 | } |