File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 19
19
//
20
20
// On Linux, librt and libdl are indirect dependencies via std,
21
21
// and binutils 2.22+ won't add them automatically
22
- #[ cfg( all( target_os = "linux" , not( any ( target_env = "musl" ) ) ) ) ]
22
+ #[ cfg( all( target_os = "linux" , not( target_env = "musl" ) ) ) ]
23
23
#[ link( name = "dl" ) ]
24
24
#[ link( name = "pthread" ) ]
25
25
extern { }
Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ impl Drop for Thread {
171
171
}
172
172
}
173
173
174
- #[ cfg( all( not( all( target_os = "linux" , not( any ( target_env = "musl" ) ) ) ) ,
174
+ #[ cfg( all( not( all( target_os = "linux" , not( target_env = "musl" ) ) ) ,
175
175
not( target_os = "freebsd" ) ,
176
176
not( target_os = "macos" ) ,
177
177
not( target_os = "bitrig" ) ,
@@ -185,7 +185,7 @@ pub mod guard {
185
185
}
186
186
187
187
188
- #[ cfg( any( all( target_os = "linux" , not( any ( target_env = "musl" ) ) ) ,
188
+ #[ cfg( any( all( target_os = "linux" , not( target_env = "musl" ) ) ,
189
189
target_os = "freebsd" ,
190
190
target_os = "macos" ,
191
191
target_os = "bitrig" ,
You can’t perform that action at this time.
0 commit comments