| ... | ... | @@ -89,6 +89,15 @@ const test_targets = blk: { |
| 89 | 89 | }, |
| 90 | 90 | .link_libc = true, |
| 91 | 91 | }, |
| 92 | // https://github.com/ziglang/zig/issues/4926 |
| 93 | //TestTarget{ |
| 94 | // .target = .{ |
| 95 | // .cpu_arch = .i386, |
| 96 | // .os_tag = .linux, |
| 97 | // .abi = .gnu, |
| 98 | // }, |
| 99 | // .link_libc = true, |
| 100 | //}, |
| 92 | 101 | |
| 93 | 102 | TestTarget{ |
| 94 | 103 | .target = .{ |
| ... | ... | @@ -127,7 +136,7 @@ const test_targets = blk: { |
| 127 | 136 | }) catch unreachable, |
| 128 | 137 | .link_libc = true, |
| 129 | 138 | }, |
| 130 | | // TODO https://github.com/ziglang/zig/issues/3287 |
| 139 | // https://github.com/ziglang/zig/issues/3287 |
| 131 | 140 | //TestTarget{ |
| 132 | 141 | // .target = CrossTarget.parse(.{ |
| 133 | 142 | // .arch_os_abi = "arm-linux-gnueabihf", |
| ... | ... | @@ -151,6 +160,15 @@ const test_targets = blk: { |
| 151 | 160 | }, |
| 152 | 161 | .link_libc = true, |
| 153 | 162 | }, |
| 163 | // https://github.com/ziglang/zig/issues/4927 |
| 164 | //TestTarget{ |
| 165 | // .target = .{ |
| 166 | // .cpu_arch = .mipsel, |
| 167 | // .os_tag = .linux, |
| 168 | // .abi = .gnu, |
| 169 | // }, |
| 170 | // .link_libc = true, |
| 171 | //}, |
| 154 | 172 | |
| 155 | 173 | TestTarget{ |
| 156 | 174 | .target = .{ |
| ... | ... | @@ -185,7 +203,7 @@ const test_targets = blk: { |
| 185 | 203 | .os_tag = .macosx, |
| 186 | 204 | .abi = .gnu, |
| 187 | 205 | }, |
| 188 | | // TODO https://github.com/ziglang/zig/issues/3295 |
| 206 | // https://github.com/ziglang/zig/issues/3295 |
| 189 | 207 | .disable_native = true, |
| 190 | 208 | }, |
| 191 | 209 | |