diff options
| author | Vinson Lee <vlee@freedesktop.org> | 2025-07-03 23:43:01 -0700 |
|---|---|---|
| committer | Marge Bot <marge-bot@fdo.invalid> | 2025-07-09 06:16:43 +0000 |
| commit | 406066c6f6f2f3aabfdda458aae2dac0957663bb (patch) | |
| tree | 004c9aee5e7239ffaee8f58d9292c784e566b243 | |
| parent | 0f5c66351336e0c2cbc3b060fc65d41f16656688 (diff) | |
subprojects: Update linux-raw-sys to 0.7.0
Fix build error with rustix-1.0.7.
error[E0425]: cannot find value `MAP_DROPPABLE` in module `linux_raw_sys::general`
--> ../subprojects/rustix-1.0.7/src/backend/linux_raw/mm/types.rs:109:51
|
109 | const DROPPABLE = linux_raw_sys::general::MAP_DROPPABLE;
| ^^^^^^^^^^^^^ not found in `linux_raw_sys::general`
Fixes: 8a2f43c9bdc0 ("util: rust: update to rustix 1.0.7")
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/13460
Signed-off-by: Vinson Lee <vlee@freedesktop.org>
Reviewed-by: Gurchetan Singh <gurchetansingh@google.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35930>
| -rw-r--r-- | subprojects/linux-raw-sys.wrap | 8 | ||||
| -rw-r--r-- | subprojects/packagefiles/linux-raw-sys/meson.build | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/subprojects/linux-raw-sys.wrap b/subprojects/linux-raw-sys.wrap index ff085fffe14..5af01cd6f4f 100644 --- a/subprojects/linux-raw-sys.wrap +++ b/subprojects/linux-raw-sys.wrap @@ -1,6 +1,6 @@ [wrap-file] -directory = linux-raw-sys-0.4.14 -source_url = https://crates.io/api/v1/crates/linux-raw-sys/0.4.14/download -source_filename = linux-raw-sys-0.4.14.tar.gz -source_hash = 78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89 +directory = linux-raw-sys-0.7.0 +source_url = https://crates.io/api/v1/crates/linux-raw-sys/0.7.0/download +source_filename = linux-raw-sys-0.7.0.tar.gz +source_hash = 51bafc0bb5cbecb9ed381e75b803040302fd678b5d9faa04f01eaa280bc8c029 patch_directory = linux-raw-sys diff --git a/subprojects/packagefiles/linux-raw-sys/meson.build b/subprojects/packagefiles/linux-raw-sys/meson.build index 321312a21c4..0a2c6dd6c0c 100644 --- a/subprojects/packagefiles/linux-raw-sys/meson.build +++ b/subprojects/packagefiles/linux-raw-sys/meson.build @@ -4,7 +4,7 @@ project( 'linux-raw-sys', 'rust', - version : '0.4.14', + version : '0.7.0', license : 'MIT OR Apache-2.0 OR Apache-2.0 WITH LLVM-exception', ) |