File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -12,11 +12,6 @@ fn main() {
1212 . expect ( "CARGO_CFG_TARGET_POINTER_WIDTH was not set" )
1313 . parse ( )
1414 . unwrap ( ) ;
15- let target_features: Vec < _ > = env:: var ( "CARGO_CFG_TARGET_FEATURE" )
16- . unwrap_or_default ( )
17- . split ( "," )
18- . map ( ToOwned :: to_owned)
19- . collect ( ) ;
2015 let is_miri = env:: var_os ( "CARGO_CFG_MIRI" ) . is_some ( ) ;
2116
2217 println ! ( "cargo:rustc-check-cfg=cfg(netbsd10)" ) ;
@@ -108,8 +103,6 @@ fn main() {
108103 ( "s390x" , _) => false ,
109104 // Unsupported <https://github.com/llvm/llvm-project/issues/94434>
110105 ( "arm64ec" , _) => false ,
111- // LLVM crash <https://github.com/llvm/llvm-project/issues/129394>
112- ( "aarch64" , _) if !target_features. iter ( ) . any ( |f| f == "neon" ) => false ,
113106 // MinGW ABI bugs <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115054>
114107 ( "x86_64" , "windows" ) if target_env == "gnu" && target_abi != "llvm" => false ,
115108 // Infinite recursion <https://github.com/llvm/llvm-project/issues/97981>
You can’t perform that action at this time.
0 commit comments