File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -32,12 +32,16 @@ pub fn gethostname(name: &mut [u8]) -> Result<()>;
32
32
33
33
## Supported Platforms
34
34
35
- nix target support consists of three tiers:
35
+ nix target support consists of two tiers. While nix attempts to support all
36
+ platforms supported by [ libc] ( https://github.com/rust-lang/libc ) , only some
37
+ platforms are actively supported due to either technical or manpower
38
+ limitations. Support for platforms is split into two tiers:
36
39
37
- * Tier 1 - Target is supported and CI both builds and tests
38
- * Tier 2 - Target is supported and CI builds the target
39
- * Tier 3 - Target is supported and CI both builds and tests but test failures
40
- do not block merging code
40
+ * Tier 1 - Builds and tests for this target are run in CI. Failures of either
41
+ block the inclusion of new code.
42
+ * Tier 2 - Builds for this target are run in CI. Failures during the build
43
+ blocks the inclusion of new code. Tests may be run, but failures
44
+ in tests don't block the inclusion of new code.
41
45
42
46
The following targets are all supported by nix on Rust 1.13.0 or newer:
43
47
@@ -57,8 +61,6 @@ Tier 1:
57
61
Tier 2:
58
62
* i686-unknown-freebsd
59
63
* x86_64-unknown-netbsd
60
-
61
- Tier 3:
62
64
* i686-unknown-linux-musl
63
65
* x86_64-unknown-linux-musl
64
66
You can’t perform that action at this time.
0 commit comments