File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 7171 strategy :
7272 fail-fast : false
7373 matrix :
74- target : ["armv7-sony-vita-newlibeabihf"]
74+ target : ["armv7-sony-vita-newlibeabihf", "i686-unknown-hurd-gnu" ]
7575 steps :
7676 - uses : actions/checkout@v3
7777 - uses : dtolnay/rust-toolchain@nightly
@@ -108,7 +108,7 @@ jobs:
108108 strategy :
109109 fail-fast : false
110110 matrix :
111- target : ["armv7-sony-vita-newlibeabihf"]
111+ target : ["armv7-sony-vita-newlibeabihf", "i686-unknown-hurd-gnu" ]
112112 steps :
113113 - uses : actions/checkout@v3
114114 - 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 {
13071307 #[ cfg( not( any(
13081308 target_os = "dragonfly" ,
13091309 target_os = "haiku" ,
1310+ target_os = "hurd" ,
13101311 target_os = "netbsd" ,
13111312 target_os = "openbsd" ,
13121313 target_os = "redox" ,
@@ -1344,6 +1345,7 @@ impl Socket {
13441345 #[ cfg( not( any(
13451346 target_os = "dragonfly" ,
13461347 target_os = "haiku" ,
1348+ target_os = "hurd" ,
13471349 target_os = "netbsd" ,
13481350 target_os = "openbsd" ,
13491351 target_os = "redox" ,
@@ -1521,6 +1523,7 @@ impl Socket {
15211523 target_os = "aix" ,
15221524 target_os = "dragonfly" ,
15231525 target_os = "fuchsia" ,
1526+ target_os = "hurd" ,
15241527 target_os = "illumos" ,
15251528 target_os = "netbsd" ,
15261529 target_os = "openbsd" ,
@@ -1551,6 +1554,7 @@ impl Socket {
15511554 target_os = "aix" ,
15521555 target_os = "dragonfly" ,
15531556 target_os = "fuchsia" ,
1557+ target_os = "hurd" ,
15541558 target_os = "illumos" ,
15551559 target_os = "netbsd" ,
15561560 target_os = "openbsd" ,
@@ -1775,6 +1779,7 @@ impl Socket {
17751779 target_os = "redox" ,
17761780 target_os = "solaris" ,
17771781 target_os = "haiku" ,
1782+ target_os = "hurd" ,
17781783 target_os = "espidf" ,
17791784 target_os = "vita" ,
17801785 ) ) ) ]
@@ -1799,6 +1804,7 @@ impl Socket {
17991804 target_os = "redox" ,
18001805 target_os = "solaris" ,
18011806 target_os = "haiku" ,
1807+ target_os = "hurd" ,
18021808 target_os = "espidf" ,
18031809 target_os = "vita" ,
18041810 ) ) ) ]
Original file line number Diff line number Diff line change @@ -121,6 +121,7 @@ pub(crate) use libc::ipv6_mreq as Ipv6Mreq;
121121#[ cfg( not( any(
122122 target_os = "dragonfly" ,
123123 target_os = "fuchsia" ,
124+ target_os = "hurd" ,
124125 target_os = "illumos" ,
125126 target_os = "netbsd" ,
126127 target_os = "openbsd" ,
@@ -143,6 +144,7 @@ pub(crate) use libc::IP_HDRINCL;
143144 target_os = "redox" ,
144145 target_os = "solaris" ,
145146 target_os = "haiku" ,
147+ target_os = "hurd" ,
146148 target_os = "nto" ,
147149 target_os = "espidf" ,
148150 target_os = "vita" ,
@@ -179,6 +181,7 @@ pub(crate) use libc::{
179181#[ cfg( not( any(
180182 target_os = "dragonfly" ,
181183 target_os = "haiku" ,
184+ target_os = "hurd" ,
182185 target_os = "netbsd" ,
183186 target_os = "openbsd" ,
184187 target_os = "redox" ,
@@ -329,6 +332,7 @@ type IovLen = usize;
329332 target_os = "freebsd" ,
330333 target_os = "fuchsia" ,
331334 target_os = "haiku" ,
335+ target_os = "hurd" ,
332336 target_os = "illumos" ,
333337 target_os = "ios" ,
334338 target_os = "macos" ,
@@ -446,6 +450,7 @@ impl Type {
446450 target_os = "dragonfly" ,
447451 target_os = "freebsd" ,
448452 target_os = "fuchsia" ,
453+ target_os = "hurd" ,
449454 target_os = "illumos" ,
450455 target_os = "linux" ,
451456 target_os = "netbsd" ,
@@ -464,6 +469,7 @@ impl Type {
464469 target_os = "dragonfly" ,
465470 target_os = "freebsd" ,
466471 target_os = "fuchsia" ,
472+ target_os = "hurd" ,
467473 target_os = "illumos" ,
468474 target_os = "linux" ,
469475 target_os = "netbsd" ,
You can’t perform that action at this time.
0 commit comments