ports/lang/rust/patches/patch-tests_ui_sse2_rs

13 lines
394 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
Index: tests/ui/sse2.rs
--- tests/ui/sse2.rs.orig
+++ tests/ui/sse2.rs
@@ -9,7 +9,7 @@ fn main() {
match env::var("TARGET") {
Ok(s) => {
// Skip this tests on i586-unknown-linux-gnu where sse2 is disabled
- if s.contains("i586") {
+ if s.contains("i586") || s.contains("i686-unknown-openbsd") {
return
}
}