File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -114,6 +114,7 @@ fn pcre2_sys_static() -> Option<bool> {
114
114
// aarch64-linux-android does not build
115
115
// armv7-linux-androideabi does not build
116
116
// aarch64-unknown-linux-musl does not build
117
+ // *-*-*-musleabi* does not build
117
118
//
118
119
// We may want to monitor developments on the `aarch64-apple-darwin` front as
119
120
// they may end up propagating to all `aarch64`-based targets and the `x86_64`
@@ -131,6 +132,9 @@ fn enable_jit(target: &str, builder: &mut cc::Build) {
131
132
if target == "aarch64-unknown-linux-musl" {
132
133
return ;
133
134
}
135
+ if target. contains ( "musleabi" ) {
136
+ return ;
137
+ }
134
138
if target. contains ( "apple-ios" ) || target. contains ( "apple-tvos" ) {
135
139
return ;
136
140
}
You can’t perform that action at this time.
0 commit comments