File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -209,8 +209,7 @@ cfg_if! {
209
209
} else if #[ cfg( all( not( stdbuild) ,
210
210
feature = "use_std" ,
211
211
not( any( target_os = "macos" ,
212
- target_os = "ios" ,
213
- target_os = "bitrig" )
212
+ target_os = "ios" )
214
213
) ) ) ] {
215
214
// cargo build, don't pull in anything extra as the libstd dep
216
215
// already pulls in all libs.
@@ -234,14 +233,14 @@ cfg_if! {
234
233
#[ link( name = "m" ) ]
235
234
extern { }
236
235
} else if #[ cfg( any( target_os = "macos" ,
237
- target_os = "ios" ,
238
- target_os = "bitrig" ) ) ] {
236
+ target_os = "ios" ) ) ] {
239
237
#[ link( name = "c" ) ]
240
238
#[ link( name = "m" ) ]
241
239
#[ link( name = "resolv" ) ]
242
240
extern { }
243
241
} else if #[ cfg( any( target_os = "android" ,
244
- target_os = "openbsd" ) ) ] {
242
+ target_os = "openbsd" ,
243
+ target_os = "bitrig" ) ) ] {
245
244
#[ link( name = "c" ) ]
246
245
#[ link( name = "m" ) ]
247
246
extern { }
@@ -714,6 +713,7 @@ extern {
714
713
not( target_os = "ios" ) ,
715
714
not( target_os = "netbsd" ) ,
716
715
not( target_os = "openbsd" ) ,
716
+ not( target_os = "bitrig" ) ,
717
717
not( target_os = "solaris" ) ,
718
718
not( target_env = "musl" )
719
719
) ,
You can’t perform that action at this time.
0 commit comments