File tree 3 files changed +9
-2
lines changed
3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 71
71
strategy :
72
72
fail-fast : false
73
73
matrix :
74
- target : ["armv7-sony-vita-newlibeabihf"]
74
+ target : ["armv7-sony-vita-newlibeabihf", "i686-unknown-hurd-gnu" ]
75
75
steps :
76
76
- uses : actions/checkout@v3
77
77
- uses : dtolnay/rust-toolchain@nightly
@@ -108,7 +108,7 @@ jobs:
108
108
strategy :
109
109
fail-fast : false
110
110
matrix :
111
- target : ["armv7-sony-vita-newlibeabihf"]
111
+ target : ["armv7-sony-vita-newlibeabihf", "i686-unknown-hurd-gnu" ]
112
112
steps :
113
113
- uses : actions/checkout@v3
114
114
- uses : dtolnay/rust-toolchain@nightly # NOTE: need nightly for `doc_cfg` feature.
Original file line number Diff line number Diff line change @@ -1307,6 +1307,7 @@ impl Socket {
1307
1307
#[ cfg( not( any(
1308
1308
target_os = "dragonfly" ,
1309
1309
target_os = "haiku" ,
1310
+ target_os = "hurd" ,
1310
1311
target_os = "netbsd" ,
1311
1312
target_os = "openbsd" ,
1312
1313
target_os = "redox" ,
@@ -1344,6 +1345,7 @@ impl Socket {
1344
1345
#[ cfg( not( any(
1345
1346
target_os = "dragonfly" ,
1346
1347
target_os = "haiku" ,
1348
+ target_os = "hurd" ,
1347
1349
target_os = "netbsd" ,
1348
1350
target_os = "openbsd" ,
1349
1351
target_os = "redox" ,
@@ -1521,6 +1523,7 @@ impl Socket {
1521
1523
target_os = "aix" ,
1522
1524
target_os = "dragonfly" ,
1523
1525
target_os = "fuchsia" ,
1526
+ target_os = "hurd" ,
1524
1527
target_os = "illumos" ,
1525
1528
target_os = "netbsd" ,
1526
1529
target_os = "openbsd" ,
@@ -1551,6 +1554,7 @@ impl Socket {
1551
1554
target_os = "aix" ,
1552
1555
target_os = "dragonfly" ,
1553
1556
target_os = "fuchsia" ,
1557
+ target_os = "hurd" ,
1554
1558
target_os = "illumos" ,
1555
1559
target_os = "netbsd" ,
1556
1560
target_os = "openbsd" ,
Original file line number Diff line number Diff line change @@ -121,6 +121,7 @@ pub(crate) use libc::ipv6_mreq as Ipv6Mreq;
121
121
#[ cfg( not( any(
122
122
target_os = "dragonfly" ,
123
123
target_os = "fuchsia" ,
124
+ target_os = "hurd" ,
124
125
target_os = "illumos" ,
125
126
target_os = "netbsd" ,
126
127
target_os = "openbsd" ,
@@ -179,6 +180,7 @@ pub(crate) use libc::{
179
180
#[ cfg( not( any(
180
181
target_os = "dragonfly" ,
181
182
target_os = "haiku" ,
183
+ target_os = "hurd" ,
182
184
target_os = "netbsd" ,
183
185
target_os = "openbsd" ,
184
186
target_os = "redox" ,
@@ -329,6 +331,7 @@ type IovLen = usize;
329
331
target_os = "freebsd" ,
330
332
target_os = "fuchsia" ,
331
333
target_os = "haiku" ,
334
+ target_os = "hurd" ,
332
335
target_os = "illumos" ,
333
336
target_os = "ios" ,
334
337
target_os = "macos" ,
You can’t perform that action at this time.
0 commit comments