We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08d8ba9 commit 26cddd7Copy full SHA for 26cddd7
CHANGELOG.md
@@ -3,6 +3,13 @@
3
All notable changes to this project will be documented in this file.
4
This project adheres to [Semantic Versioning](https://semver.org/).
5
6
+## [0.26.5] - 2024-12-20
7
+
8
+### Fixed
9
10
+- Fixed the build issue of undefined import self::consts on the loongarch64.
11
+ ([#2568](https://github.com/nix-rust/nix/pull/2568))
12
13
## [0.26.4] - 2023-08-28
14
15
### Fixed
src/sys/ioctl/linux.rs
@@ -19,7 +19,8 @@ pub const TYPEBITS: ioctl_num_type = 8;
19
target_arch = "mips64",
20
target_arch = "powerpc",
21
target_arch = "powerpc64",
22
- target_arch = "sparc64"
+ target_arch = "sparc64",
23
+ target_arch = "loongarch64"
24
))]
25
mod consts {
26
#[doc(hidden)]
0 commit comments