File tree 1 file changed +0
-7
lines changed
1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -12,11 +12,6 @@ fn main() {
12
12
. expect ( "CARGO_CFG_TARGET_POINTER_WIDTH was not set" )
13
13
. parse ( )
14
14
. 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 ( ) ;
20
15
let is_miri = env:: var_os ( "CARGO_CFG_MIRI" ) . is_some ( ) ;
21
16
22
17
println ! ( "cargo:rustc-check-cfg=cfg(netbsd10)" ) ;
@@ -108,8 +103,6 @@ fn main() {
108
103
( "s390x" , _) => false ,
109
104
// Unsupported <https://github.com/llvm/llvm-project/issues/94434>
110
105
( "arm64ec" , _) => false ,
111
- // LLVM crash <https://github.com/llvm/llvm-project/issues/129394>
112
- ( "aarch64" , _) if !target_features. iter ( ) . any ( |f| f == "neon" ) => false ,
113
106
// MinGW ABI bugs <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115054>
114
107
( "x86_64" , "windows" ) if target_env == "gnu" && target_abi != "llvm" => false ,
115
108
// Infinite recursion <https://github.com/llvm/llvm-project/issues/97981>
You can’t perform that action at this time.
0 commit comments