rucc_sysroot/layout.rs
1//! The directory layout of one target's sysroot, and the cache key that names it.
2//!
3//! Design: `spec/cross-compile/08-sysroots.md` sections 8.2 and 8.3.
4//!
5//! # Why the directories are split the way they are
6//!
7//! Section 8.3 is about a multiplication. Headers are naively `arch x os x libc x libc-version`
8//! trees, which for glibc alone is eight architectures times six versions and several hundred
9//! megabytes, and `spec/cross-compile/13-distribution.md` has a size budget that number destroys.
10//!
11//! The fix is two splits that turn the product into a sum. The per version differences go inside
12//! the files as `#if __GLIBC_MINOR__ >= n`, so one tree serves every version. The per architecture
13//! differences stay in directories, because they are whole files rather than lines, but only for
14//! the small part of a libc that has any: `bits/` and a handful of others. Everything else is one
15//! copy.
16//!
17//! That is why a sysroot here has two include directories rather than one. [`Sysroot::arch_include`]
18//! holds the files that differ by architecture and is searched first, and
19//! [`Sysroot::generic_include`] holds the copy that every architecture shares.
20//!
21//! A Windows target has one rather than two, because mingw-w64's tree is the same files whatever
22//! the machine is and there is nothing for the first directory to hold. That is
23//! [`Sysroot::splits_by_arch`], and the reason it is a question about the target rather than a
24//! directory that happens to be empty is that the compiler prints what it searches.
25//!
26//! A Linux target searches four directories and not two, because the kernel's headers are a second
27//! pair with the same split and a different owner. They are [`Kernel`], their root is the cache
28//! rather than a sysroot, and the order is the libc's two and then the kernel's two, which is the
29//! order `zig cc -E -v` prints for a glibc target. `linux/` and `asm/` are nine megabytes of files
30//! that are the same for every target, so one tree is shared and only `asm/` is copied per
31//! architecture.
32//!
33//! # Why the root is a function of the tuple
34//!
35//! `spec/cross-compile/02-the-goal.md` claim 5 asks for byte identical output from different hosts.
36//! A sysroot that lands in a directory named after the host, or after the day it was built, or
37//! after a hash of an absolute path, breaks that before anything is compiled. So the root is the
38//! cache directory the caller chose plus the canonical spelling of the tuple, and nothing else.
39//!
40//! The canonical spelling is the key rather than a hash of it because it is already unique, it is
41//! already a legal directory name, and a cache a person can read is a cache a person can debug. It
42//! carries the whole ten field model, so `x86_64-linux-gnu` and `x86_64-linux-gnu.2.28` are
43//! different directories, which is the point of `env_version` being in the tuple at all.
44//!
45//! It is not the hash of the contents either, which is what
46//! `spec/cross-compile/13-distribution.md` section 13.2 asked for until tamnd/rucc#1021 settled it.
47//! A name cannot carry one: this function is what the producer calls to find out where to write
48//! files it has not written yet, so there are no contents to hash when the question is asked. The
49//! hash lives in the record instead, which is [`crate::Manifest::digest`], and the one thing the
50//! name has to be is the same on two hosts.
51
52use std::fmt;
53use std::path::{Path, PathBuf};
54
55use rucc_tuple::{Arch, DataModel, Endian, Env, Os, TargetTuple, Version};
56
57/// One target's sysroot: where its headers are, where its link inputs are, and where the record
58/// of what they are is.
59///
60/// Constructed rather than discovered. Nothing here checks that any of these directories exists,
61/// because the caller that is about to produce a sysroot needs the same answer as the caller that
62/// is about to read one, and a constructor that failed for an absent directory would give the
63/// first one nothing to create.
64#[derive(Debug, Clone, PartialEq, Eq)]
65pub struct Sysroot {
66 target: TargetTuple,
67 root: PathBuf,
68}
69
70impl Sysroot {
71 /// The sysroot for this target inside this cache directory.
72 ///
73 /// The path is `<cache>/sysroots/<canonical tuple>`. Two hosts running this with the same
74 /// cache directory and the same target get the same path, which is what makes the tuple a
75 /// cache key and is the reason `spec/cross-compile/03-target-model.md` section 3.2 admits a
76 /// field only when it changes how a call is made or a struct is laid out.
77 #[must_use]
78 pub fn in_cache(cache: &Path, target: TargetTuple) -> Self {
79 let root = cache.join("sysroots").join(target.to_canonical_string());
80 Sysroot { target, root }
81 }
82
83 /// A sysroot rooted at a directory the user named, with `--sysroot` or `-isysroot`.
84 ///
85 /// The layout below the root is the same, so a user who assembled a tree the way we lay one
86 /// out is served by every other method here. A user who did not is served by
87 /// [`Options::sysroot`](crate::Options::sysroot), which replaces step 3 of section 8.5
88 /// wholesale rather than assuming a shape.
89 #[must_use]
90 pub fn at(root: PathBuf, target: TargetTuple) -> Self {
91 Sysroot { target, root }
92 }
93
94 /// The target this sysroot is for.
95 #[must_use]
96 pub const fn target(&self) -> TargetTuple {
97 self.target
98 }
99
100 /// The directory everything else here is under.
101 #[must_use]
102 pub fn root(&self) -> &Path {
103 &self.root
104 }
105
106 /// The cache key, which is the canonical spelling of the tuple.
107 ///
108 /// The whole tuple and not a summary of it. A key that dropped `env_version` would serve a
109 /// sysroot built against glibc 2.28 to a target that pinned 2.34, and the failure would be a
110 /// missing symbol at link time on one machine and not on another.
111 #[must_use]
112 pub fn cache_key(&self) -> String {
113 self.target.to_canonical_string()
114 }
115
116 /// The headers that differ by architecture, which are searched before the generic ones.
117 ///
118 /// Section 8.3's second split. For musl this is `bits/`, which is a few dozen small files
119 /// against a few hundred shared ones, so the copy per architecture is cheap and the
120 /// alternative of one whole tree per architecture is not.
121 #[must_use]
122 pub fn arch_include(&self) -> PathBuf {
123 self.root.join("include").join(self.header_arch())
124 }
125
126 /// The headers every architecture shares, which is almost all of them.
127 #[must_use]
128 pub fn generic_include(&self) -> PathBuf {
129 self.root.join("include").join("generic")
130 }
131
132 /// The libc's include directories, in search order, most specific first.
133 ///
134 /// Two rather than four. A Linux target also needs the kernel's own headers, which are
135 /// [`Kernel`] and are not under this root, because they are the same files for every target
136 /// that shares an architecture and carrying a copy of them per tuple is nine megabytes times
137 /// the size of the table.
138 ///
139 /// One rather than two for a Windows target, which is [`Sysroot::splits_by_arch`].
140 #[must_use]
141 pub fn includes(&self) -> Vec<PathBuf> {
142 if self.splits_by_arch() {
143 vec![self.arch_include(), self.generic_include()]
144 } else {
145 vec![self.generic_include()]
146 }
147 }
148
149 /// Whether this target's headers are split by architecture at all.
150 ///
151 /// Section 8.3's second split is a libc's, and mingw-w64 has not got one. Measured rather than
152 /// assumed: installing mingw-w64 14.0.0's headers for `x86_64-w64-mingw32`,
153 /// `i686-w64-mingw32` and `aarch64-w64-mingw32` gives three trees of 1702 files that `diff -rq`
154 /// finds no difference between, because what a Windows header would branch on is the API level
155 /// the program asked for with `_WIN32_WINNT` rather than the machine it is being compiled for.
156 ///
157 /// So a Windows sysroot has `include/generic` and nothing beside it, and this is what keeps the
158 /// search path from naming a directory that a producer was never going to write. A path that is
159 /// simply absent would cost nothing at lookup time, which is why this is about honesty rather
160 /// than about speed: `-print-search-dirs` and `-E -v` print what is searched, and a directory
161 /// nobody publishes is a line that sends a person looking for a tree that does not exist.
162 #[must_use]
163 pub fn splits_by_arch(&self) -> bool {
164 self.target.os() != Os::Windows
165 }
166
167 /// The link inputs: the start files, the libc archive or its generated stubs, and the
168 /// compiler's own runtime for this target.
169 #[must_use]
170 pub fn lib(&self) -> PathBuf {
171 self.root.join("lib")
172 }
173
174 /// The manifest naming every input with its source, its hash and its licence.
175 ///
176 /// A file rather than a directory, and at the top rather than beside the libraries, because
177 /// the thing a person does with it is read it first.
178 #[must_use]
179 pub fn manifest_path(&self) -> PathBuf {
180 self.root.join("manifest")
181 }
182
183 /// The name the target's libc gives to its per architecture header directory.
184 ///
185 /// Not the architecture component of the canonical tuple, which carries a baseline the headers
186 /// do not care about: `armv7a-linux-musleabihf` and `armv5te-linux-musleabi` read the same
187 /// `arm` directory, because a header does not know which instructions the chip has. 32-bit x86
188 /// is `i386` in musl's source tree whatever the tuple spells it.
189 ///
190 /// # Why the libc is part of the answer
191 ///
192 /// The two libcs do not split their headers at the same place, and the name has to follow the
193 /// libc rather than a scheme of ours, because the producer installs what the libc's own build
194 /// system installs and the compiler has to look where that put it.
195 ///
196 /// musl splits per architecture and per ABI, which is what `arch/` in its source tree is, so
197 /// `x86_64`, `i386` and `x32` are three directories. glibc splits per architecture family and
198 /// handles the rest inside the files: one `x86` directory serves i386, x86-64 and x32, and 22
199 /// of the 31 files in its `bits/` branch on `__x86_64__`, `__ILP32__` or `__WORDSIZE` to do it,
200 /// starting with `bits/wordsize.h`. Checked against Zig 0.16, which ships twelve glibc
201 /// directories named after families and seventeen musl directories named after architectures.
202 ///
203 /// # The rule this is here to enforce
204 ///
205 /// An ILP32 ABI on a 64-bit architecture cannot read the LP64 headers. Every type that carries
206 /// a pointer or a `long` is a different size, and `x86_64-linux-gnux32` is the row that proves
207 /// it. For musl that is a separate directory, which is what the suffix below is. For glibc it
208 /// is a branch inside glibc's own files, so the directory is shared and the thing that checks
209 /// it is section 8.4's structural equivalence corpus rather than a path.
210 #[must_use]
211 pub fn header_arch(&self) -> &'static str {
212 if self.target.env() == Env::Gnu {
213 return self.header_family();
214 }
215 let narrow = self.target.data_model() == DataModel::Ilp32On64;
216 match (self.target.arch(), narrow) {
217 // x32 is what everyone calls it, including musl and glibc, so it does not get the
218 // suffix the rule below would give it.
219 (Arch::X86_64, true) => "x32",
220 (Arch::X86_64, false) => "x86_64",
221 (Arch::X86, _) => "i386",
222 (Arch::Aarch64 | Arch::Arm64Ec, true) => "aarch64_ilp32",
223 (Arch::Aarch64 | Arch::Arm64Ec, false) => "aarch64",
224 (Arch::Arm, _) => "arm",
225 (Arch::Riscv64, true) => "riscv64_ilp32",
226 (Arch::Riscv64, false) => "riscv64",
227 (Arch::Riscv32, _) => "riscv32",
228 (Arch::S390x, true) => "s390x_ilp32",
229 (Arch::S390x, false) => "s390x",
230 (Arch::PowerPc64, true) => "powerpc64_ilp32",
231 (Arch::PowerPc64, false) => "powerpc64",
232 (Arch::LoongArch64, true) => "loongarch64_ilp32",
233 (Arch::LoongArch64, false) => "loongarch64",
234 (Arch::Wasm32, _) => "wasm32",
235 }
236 }
237
238 /// The architecture family, which is how glibc names its per architecture header directory.
239 ///
240 /// The data model is not in it, on purpose, for the reason [`Sysroot::header_arch`] gives: the
241 /// family's files carry the branch themselves. `s390x` and `loongarch` are spelled the way
242 /// glibc's own `sysdeps` tree spells them, which is not the same shortening for both.
243 ///
244 /// # Why powerpc is the only family whose byte order is in the name
245 ///
246 /// The byte order is in the name exactly where the installed text depends on it, and that is one
247 /// family. Measured on glibc 2.44, by installing a family's headers twice with
248 /// `make install-headers` and diffing the two installs. `aarch64_be-linux-gnu` against
249 /// `aarch64-linux-gnu` is 474 files each and an empty diff, so one directory serves both orders.
250 /// `powerpc64-linux-gnu` against `powerpc64le-linux-gnu` is 474 files each and one file that
251 /// differs, `bits/long-double.h`, because little endian powerpc can redirect `long double` to
252 /// the float128 ABI and big endian powerpc cannot, so one install defines
253 /// `__LDOUBLE_REDIRECTS_TO_FLOAT128_ABI` as `(__LDBL_MANT_DIG__ == 113)` and the other defines
254 /// it as `0`. One directory for both orders would hand half of the powerpc rows a macro that is
255 /// wrong about their own ABI.
256 ///
257 /// The word size is not in the name, for powerpc either. The third run of the same experiment,
258 /// `powerpc-linux-gnu` against `powerpc64-linux-gnu` with the order held fixed, is 474 files
259 /// each and an empty diff, which is the x86 answer again: `bits/wordsize.h` is two files in
260 /// glibc's `sysdeps` tree for powerpc and they are byte identical, and both of them branch on
261 /// `__powerpc64__`. So the name is the family and the order and nothing else, which is why it is
262 /// `powerpc` and `powerpcle` rather than a spelling per width.
263 ///
264 /// `bits/endianness.h` is not the reason, which is worth saying because it reads like the
265 /// obvious one and tamnd/rucc#940 was written around it. glibc's copies of that file for arm,
266 /// aarch64 and powerpc branch on `__BIG_ENDIAN__` and `_BIG_ENDIAN` inside the file, the same
267 /// way `bits/wordsize.h` branches on `__x86_64__`, so both orders install the same text into it.
268 /// musl 1.2.5 does the same in `bits/alltypes.h` and `bits/signal.h` and ships no per order
269 /// directory under `arch/` at all, which is why [`Sysroot::header_arch`]'s musl names carry no
270 /// order either.
271 fn header_family(&self) -> &'static str {
272 match (self.target.arch(), self.target.endian()) {
273 (Arch::X86_64 | Arch::X86, _) => "x86",
274 // Arm64EC is a Windows ABI and never has glibc headers. It answers with the family it
275 // belongs to rather than with a word that is not a directory anywhere.
276 (Arch::Aarch64 | Arch::Arm64Ec, _) => "aarch64",
277 (Arch::Arm, _) => "arm",
278 (Arch::Riscv64 | Arch::Riscv32, _) => "riscv",
279 (Arch::S390x, _) => "s390x",
280 // `powerpc` is the big endian directory because that is the name glibc's own `sysdeps`
281 // tree uses and big endian is what the bare spelling means everywhere in this tuple
282 // model. `powerpcle` is the GNU spelling of the other one.
283 (Arch::PowerPc64, Endian::Big) => "powerpc",
284 (Arch::PowerPc64, Endian::Little) => "powerpcle",
285 (Arch::LoongArch64, _) => "loongarch",
286 // There is no glibc for wasm. The arm of the match exists because the type is closed
287 // and a wildcard here would quietly name a directory for a future architecture.
288 (Arch::Wasm32, _) => "wasm32",
289 }
290 }
291}
292
293/// The kernel's own headers, which are not the libc's and are shared by every target that can read
294/// them.
295///
296/// `linux/` and `asm/` are the system call interface rather than the C library, and a sysroot
297/// without them does not compile 31 of glibc's installed headers or 3 of musl's, `sys/quota.h` and
298/// `net/ethernet.h` among them. So they are part of what section 8.2 calls a sysroot even though no
299/// libc produced them.
300///
301/// # Why they are not under [`Sysroot`]
302///
303/// One tree serves every libc and every architecture except `asm/`, which is per architecture and
304/// small. Copying the shared part into each tuple's sysroot would be nine megabytes times the
305/// number of Linux rows in the table, for files that are identical in every copy. So the root is
306/// the cache directory rather than a sysroot, and a sysroot that was produced with it records the
307/// version in its manifest, which is [`crate::Manifest::kernel`] and the `kernel` line of the
308/// format. The tree carries its own record as well, headed `rucc kernel headers manifest 1`, because
309/// one tree serves every target and a sysroot manifest names one. Nothing checks the two against
310/// each other: a sysroot can be produced beside one tree and read beside another, and the manifest
311/// makes that visible rather than preventing it.
312///
313/// # Why the version is not in the path
314///
315/// The driver has to be able to compute this path before it reads anything, and a version in the
316/// path would mean asking the cache what it has before being able to ask where it is. It is the
317/// same decision [`Sysroot::in_cache`] makes about the libc version, where the tuple carries the
318/// version only because `env_version` is part of the target's identity, and the same gap: a cache
319/// populated by one release and read by the next gets whatever is there.
320///
321/// That gap does not close by putting a hash in a path, which is what
322/// `spec/cross-compile/13-distribution.md` section 13.2 used to say and what tamnd/rucc#1021
323/// settled: a path has to be known before anything has been read. What closes it is comparing a
324/// record against one somebody published, and the record says which release it was, here as the
325/// tree's own `manifest` and in a sysroot as [`crate::Manifest::kernel`].
326#[derive(Debug, Clone, PartialEq, Eq)]
327pub struct Kernel {
328 arch: &'static str,
329 root: PathBuf,
330}
331
332impl Kernel {
333 /// The kernel headers in this cache directory for this target, when the target has any.
334 ///
335 /// [`None`] for everything that is not Linux with a libc we produce a tree for. Windows, the
336 /// BSDs and Darwin have their own system headers and no `linux/` at all, freestanding has no
337 /// system call interface by definition, and Android is Linux but bionic carries its own
338 /// scrubbed copy of the uapi headers, which is a different tree from this one and not a subset
339 /// of it.
340 #[must_use]
341 pub fn for_target(cache: &Path, target: TargetTuple) -> Option<Kernel> {
342 if target.os() != Os::Linux || !matches!(target.env(), Env::Gnu | Env::Musl) {
343 return None;
344 }
345 let arch = kernel_arch(target.arch())?;
346 Some(Kernel { arch, root: cache.join("kernel-headers") })
347 }
348
349 /// The directory both of these are under.
350 #[must_use]
351 pub fn root(&self) -> &Path {
352 &self.root
353 }
354
355 /// `asm/`, which is the part of the interface that is per architecture.
356 ///
357 /// Named after the kernel's own architecture directory and not after ours or the libc's, which
358 /// is a third spelling of the same machine and the reason this is a method rather than a format
359 /// string at the call site.
360 #[must_use]
361 pub fn arch_include(&self) -> PathBuf {
362 self.root.join(self.arch)
363 }
364
365 /// `linux/`, `asm-generic/` and the rest, which are the same files for every architecture.
366 #[must_use]
367 pub fn generic_include(&self) -> PathBuf {
368 self.root.join("generic")
369 }
370
371 /// Both directories, in search order, most specific first.
372 #[must_use]
373 pub fn includes(&self) -> Vec<PathBuf> {
374 vec![self.arch_include(), self.generic_include()]
375 }
376
377 /// The kernel's name for this architecture.
378 #[must_use]
379 pub const fn arch(&self) -> &'static str {
380 self.arch
381 }
382}
383
384/// What `make headers_install ARCH=` takes, which is a third naming of the machine.
385///
386/// `arm64` rather than `aarch64` and `s390` rather than `s390x`, because those are the directories
387/// under `arch/` in the kernel's source tree, and the 31-bit s390 port leaving did not rename the
388/// one that stayed. One directory serves both widths of x86, of riscv and of powerpc, the same way
389/// glibc's family does and for the same reason: the uapi headers branch on the compiler's macros.
390///
391/// [`None`] for an architecture the kernel does not have, which is wasm.
392const fn kernel_arch(arch: Arch) -> Option<&'static str> {
393 match arch {
394 Arch::X86_64 | Arch::X86 => Some("x86"),
395 Arch::Aarch64 | Arch::Arm64Ec => Some("arm64"),
396 Arch::Arm => Some("arm"),
397 Arch::Riscv64 | Arch::Riscv32 => Some("riscv"),
398 Arch::S390x => Some("s390"),
399 Arch::PowerPc64 => Some("powerpc"),
400 Arch::LoongArch64 => Some("loongarch"),
401 Arch::Wasm32 => None,
402 }
403}
404
405/// Whether we can produce a sysroot for this target without the user fetching anything.
406///
407/// Section 8.2's table has seven rows and two of them are legal walls rather than engineering.
408/// The macOS SDK is restricted by the Xcode licence to Apple-branded hardware and the Windows SDK
409/// is not redistributable, so for those two the answer is a path the user supplies under their own
410/// licence, and `spec/cross-compile/13-distribution.md` owns the mechanism.
411///
412/// This returns false for those two and true for everything else, including freestanding, which
413/// needs nine compiler headers and no link inputs at all.
414///
415/// Which of the two walls a target is behind is [`crate::Wall`], and this is that question asked
416/// without caring about the answer. One of them is a predicate a producer filters a table with and
417/// the other is what a message has to say, and they are the same rule either way round.
418#[must_use]
419pub fn can_be_bundled(target: TargetTuple) -> bool {
420 crate::Wall::of(target).is_none()
421}
422
423/// The glibc our bundled header tree is derived from.
424///
425/// A fact about the tree and not a choice. `sysroots/manifest` in `tamnd/rucc-cross` pins the glibc
426/// source by version and hash, the tree is produced from that source, and this is that version. It
427/// moves when the pin moves and the two are checked against each other by the producer.
428pub const BUNDLED_GLIBC: Version = Version::new(2, 44);
429
430/// The `__GLIBC_MINOR__` a target gets when it is compiled against the bundled glibc tree.
431///
432/// Design: `spec/cross-compile/08-sysroots.md` section 8.3.
433///
434/// One tree serves every glibc release, with the differences written inside the files as
435/// `#if __GLIBC_MINOR__ >= n`, so the release is the part of it the target supplies. That is Zig's
436/// patch to the same tree and the same macro, which is where the spelling comes from: `features.h`
437/// keeps `__GLIBC__` at 2 and leaves the minor to the compiler, and `__GLIBC_PREREQ` reads both.
438///
439/// [`None`] for anything that is not glibc, because there is no such macro on musl or mingw and
440/// defining one would have every probe for it answer yes on a libc that does not have it.
441///
442/// The version is the one the tuple asked for, which is the point of `env_version` being in the
443/// tuple, and [`BUNDLED_GLIBC`] when it asked for nothing. Asking for an older release is how a
444/// program is kept off symbols and declarations the target's libc does not have, and it is honest
445/// only as far as the text goes: the declarations are guarded by the macro and the structure
446/// layouts in the same files are one release's. Issue #926's last box is where that is finished and
447/// it is the same direction as the compat symbol gap of #920, too permissive rather than wrong
448/// about what it does say.
449///
450/// # Errors
451///
452/// A release newer than the tree, which is the one direction that cannot be approximated. Every
453/// `__GLIBC_PREREQ` in the program would answer yes and the declarations behind them would not be
454/// there, so the failure would be a missing declaration at best and a missing symbol at link time
455/// at worst. Both versions are in the error, because the two things a person can do about it are
456/// pin a release the tree has and name a sysroot that has the one they asked for, and neither is a
457/// choice they can make without being told which release the tree is.
458pub fn bundled_glibc_minor(target: TargetTuple) -> Result<Option<u32>, GlibcSkew> {
459 if target.os() != Os::Linux || target.env() != Env::Gnu {
460 return Ok(None);
461 }
462 let Some(asked) = target.env_version() else {
463 return Ok(Some(BUNDLED_GLIBC.minor_part().unwrap_or(0)));
464 };
465 // A glibc version is two components and a tuple will hold one or three, so a request this
466 // cannot read as a glibc release is a request for the tree's own version rather than an error:
467 // `gnu.2` is somebody naming the libc and not pinning it.
468 let Some(minor) = asked.minor_part() else {
469 return Ok(Some(BUNDLED_GLIBC.minor_part().unwrap_or(0)));
470 };
471 if asked.major_part() != BUNDLED_GLIBC.major_part()
472 || minor > BUNDLED_GLIBC.minor_part().unwrap_or(0)
473 {
474 return Err(GlibcSkew { asked, tree: BUNDLED_GLIBC });
475 }
476 Ok(Some(minor))
477}
478
479/// A glibc release the bundled tree cannot serve, and the release the tree is.
480///
481/// A type rather than a pair, because the two versions read the same way round in the message as
482/// they do here and a caller that swapped them would produce a diagnostic exactly as wrong as it is
483/// convincing.
484#[derive(Debug, Clone, Copy, PartialEq, Eq)]
485pub struct GlibcSkew {
486 /// What the target asked for.
487 pub asked: Version,
488 /// What the bundled tree is, which is [`BUNDLED_GLIBC`].
489 pub tree: Version,
490}
491
492impl fmt::Display for GlibcSkew {
493 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
494 write!(
495 f,
496 "the target asked for glibc {}, and the bundled headers are glibc {}",
497 self.asked, self.tree
498 )
499 }
500}
501
502impl std::error::Error for GlibcSkew {}