File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ impl Drop for Handler {
34
34
target_os = "freebsd" ,
35
35
target_os = "solaris" ,
36
36
target_os = "illumos" ,
37
- all ( target_os = "netbsd" , not ( target_vendor = "rumprun" ) ) ,
37
+ target_os = "netbsd" ,
38
38
target_os = "openbsd"
39
39
) ) ]
40
40
mod imp {
@@ -218,7 +218,7 @@ mod imp {
218
218
target_os = "freebsd" ,
219
219
target_os = "solaris" ,
220
220
target_os = "illumos" ,
221
- all ( target_os = "netbsd" , not ( target_vendor = "rumprun" ) ) ,
221
+ target_os = "netbsd" ,
222
222
target_os = "openbsd" ,
223
223
) ) ) ]
224
224
mod imp {
Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ impl Drop for Thread {
202
202
not( target_os = "linux" ) ,
203
203
not( target_os = "freebsd" ) ,
204
204
not( target_os = "macos" ) ,
205
- not( all ( target_os = "netbsd" , not ( target_vendor = "rumprun" ) ) ) ,
205
+ not( target_os = "netbsd" ) ,
206
206
not( target_os = "openbsd" ) ,
207
207
not( target_os = "solaris" )
208
208
) ) ]
@@ -222,7 +222,7 @@ pub mod guard {
222
222
target_os = "linux" ,
223
223
target_os = "freebsd" ,
224
224
target_os = "macos" ,
225
- all ( target_os = "netbsd" , not ( target_vendor = "rumprun" ) ) ,
225
+ target_os = "netbsd" ,
226
226
target_os = "openbsd" ,
227
227
target_os = "solaris"
228
228
) ) ]
Original file line number Diff line number Diff line change @@ -22,8 +22,6 @@ fn main() {
22
22
}
23
23
} else if target. contains ( "freebsd" ) {
24
24
println ! ( "cargo:rustc-link-lib=gcc_s" ) ;
25
- } else if target. contains ( "rumprun" ) {
26
- println ! ( "cargo:rustc-link-lib=unwind" ) ;
27
25
} else if target. contains ( "netbsd" ) {
28
26
println ! ( "cargo:rustc-link-lib=gcc_s" ) ;
29
27
} else if target. contains ( "openbsd" ) {
You can’t perform that action at this time.
0 commit comments