File tree 3 files changed +14
-2
lines changed
3 files changed +14
-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" ,
@@ -1775,6 +1779,7 @@ impl Socket {
1775
1779
target_os = "redox" ,
1776
1780
target_os = "solaris" ,
1777
1781
target_os = "haiku" ,
1782
+ target_os = "hurd" ,
1778
1783
target_os = "espidf" ,
1779
1784
target_os = "vita" ,
1780
1785
) ) ) ]
@@ -1799,6 +1804,7 @@ impl Socket {
1799
1804
target_os = "redox" ,
1800
1805
target_os = "solaris" ,
1801
1806
target_os = "haiku" ,
1807
+ target_os = "hurd" ,
1802
1808
target_os = "espidf" ,
1803
1809
target_os = "vita" ,
1804
1810
) ) ) ]
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" ,
@@ -143,6 +144,7 @@ pub(crate) use libc::IP_HDRINCL;
143
144
target_os = "redox" ,
144
145
target_os = "solaris" ,
145
146
target_os = "haiku" ,
147
+ target_os = "hurd" ,
146
148
target_os = "nto" ,
147
149
target_os = "espidf" ,
148
150
target_os = "vita" ,
@@ -179,6 +181,7 @@ pub(crate) use libc::{
179
181
#[ cfg( not( any(
180
182
target_os = "dragonfly" ,
181
183
target_os = "haiku" ,
184
+ target_os = "hurd" ,
182
185
target_os = "netbsd" ,
183
186
target_os = "openbsd" ,
184
187
target_os = "redox" ,
@@ -329,6 +332,7 @@ type IovLen = usize;
329
332
target_os = "freebsd" ,
330
333
target_os = "fuchsia" ,
331
334
target_os = "haiku" ,
335
+ target_os = "hurd" ,
332
336
target_os = "illumos" ,
333
337
target_os = "ios" ,
334
338
target_os = "macos" ,
@@ -446,6 +450,7 @@ impl Type {
446
450
target_os = "dragonfly" ,
447
451
target_os = "freebsd" ,
448
452
target_os = "fuchsia" ,
453
+ target_os = "hurd" ,
449
454
target_os = "illumos" ,
450
455
target_os = "linux" ,
451
456
target_os = "netbsd" ,
@@ -464,6 +469,7 @@ impl Type {
464
469
target_os = "dragonfly" ,
465
470
target_os = "freebsd" ,
466
471
target_os = "fuchsia" ,
472
+ target_os = "hurd" ,
467
473
target_os = "illumos" ,
468
474
target_os = "linux" ,
469
475
target_os = "netbsd" ,
You can’t perform that action at this time.
0 commit comments