| author | |
| committer | |
| log | c33cd370fc2a9cbb2b417530d8a2205bb94491d3 |
| tree | d713fab326b3931308e65413382ba0241a7c72f1 |
| parent | ef2d237f2fbcca0f16b307dda01287e78363627a |
| signature | Commit is signed but in an unrecognized format. |
I think this is working correctly. Without also removing sse2 from the
feature set, sse gets added back into the set because sse2 is part of
the x86_64 baseline (which is the cpu provided) and sse2 depends on sse.1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/target.zig+1-1| ... | ... | @@ -1258,7 +1258,7 @@ test "Target.parse" { |
| 1258 | 1258 | { |
| 1259 | 1259 | const target = (try Target.parse(.{ |
| 1260 | 1260 | .arch_os_abi = "x86_64-linux-gnu", |
| 1261 | .cpu = "x86_64-sse-avx-cx8", | |
| 1261 | .cpu = "x86_64-sse-sse2-avx-cx8", | |
| 1262 | 1262 | })).Cross; |
| 1263 | 1263 | |
| 1264 | 1264 | std.testing.expect(target.os == .linux); |