| ... | ... | @@ -94,28 +94,22 @@ pub const can_unwind: bool = s: { |
| 94 | 94 | // Notably, we are yet to support unwinding on ARM. There, unwinding is not done through |
| 95 | 95 | // `.eh_frame`, but instead with the `.ARM.exidx` section, which has a different format. |
| 96 | 96 | const archs: []const std.Target.Cpu.Arch = switch (builtin.target.os.tag) { |
| 97 | | // Not supported yet: arm, m68k, sparc64 |
| 97 | // Not supported yet: arm, m68k |
| 98 | 98 | .haiku => &.{ |
| 99 | 99 | .aarch64, |
| 100 | | .powerpc, |
| 101 | 100 | .riscv64, |
| 102 | 101 | .x86, |
| 103 | 102 | .x86_64, |
| 104 | 103 | }, |
| 105 | | // Not supported yet: arc, arm/armeb/thumb/thumbeb, csky, m68k, or1k, sparc/sparc64, xtensa |
| 104 | // Not supported yet: arc, arm/armeb/thumb/thumbeb, csky, m68k, or1k, xtensa |
| 106 | 105 | .linux => &.{ |
| 107 | 106 | .aarch64, |
| 108 | 107 | .aarch64_be, |
| 109 | | .hexagon, |
| 110 | 108 | .loongarch64, |
| 111 | 109 | .mips, |
| 112 | 110 | .mipsel, |
| 113 | 111 | .mips64, |
| 114 | 112 | .mips64el, |
| 115 | | .powerpc, |
| 116 | | .powerpcle, |
| 117 | | .powerpc64, |
| 118 | | .powerpc64le, |
| 119 | 113 | .riscv32, |
| 120 | 114 | .riscv64, |
| 121 | 115 | .s390x, |
| ... | ... | @@ -134,28 +128,23 @@ pub const can_unwind: bool = s: { |
| 134 | 128 | // Not supported yet: arm |
| 135 | 129 | .freebsd => &.{ |
| 136 | 130 | .aarch64, |
| 137 | | .powerpc64, |
| 138 | | .powerpc64le, |
| 139 | 131 | .riscv64, |
| 140 | 132 | .x86_64, |
| 141 | 133 | }, |
| 142 | | // Not supported yet: arm/armeb, m68k, mips64/mips64el, sparc/sparc64 |
| 134 | // Not supported yet: arm/armeb, m68k, mips64/mips64el |
| 143 | 135 | .netbsd => &.{ |
| 144 | 136 | .aarch64, |
| 145 | 137 | .aarch64_be, |
| 146 | 138 | .mips, |
| 147 | 139 | .mipsel, |
| 148 | | .powerpc, |
| 149 | 140 | .x86, |
| 150 | 141 | .x86_64, |
| 151 | 142 | }, |
| 152 | | // Not supported yet: arm, sparc64 |
| 143 | // Not supported yet: arm |
| 153 | 144 | .openbsd => &.{ |
| 154 | 145 | .aarch64, |
| 155 | 146 | .mips64, |
| 156 | 147 | .mips64el, |
| 157 | | .powerpc, |
| 158 | | .powerpc64, |
| 159 | 148 | .riscv64, |
| 160 | 149 | .x86, |
| 161 | 150 | .x86_64, |
| ... | ... | @@ -165,7 +154,6 @@ pub const can_unwind: bool = s: { |
| 165 | 154 | .x86, |
| 166 | 155 | .x86_64, |
| 167 | 156 | }, |
| 168 | | // Not supported yet: sparc64 |
| 169 | 157 | .solaris => &.{ |
| 170 | 158 | .x86_64, |
| 171 | 159 | }, |