Skip to content

Commit

Permalink
build: Disable memfd for ipc-channel
Browse files Browse the repository at this point in the history
This will fix arm build and makes kernels < 3.17 compatible again

Signed-off-by: Alexander Gil <[email protected]>
  • Loading branch information
pando85 committed Sep 4, 2023
1 parent 211d756 commit 6dee2e5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
7 changes: 0 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion rash_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ clap = { workspace = true, features = ["std", "color", "derive", "cargo"]}
exec = "0.3.1"
fern = { version = "0.6", features = ["colored"] }
ignore = "0.4"
ipc-channel = { version = "0.17", features = ["memfd"] }
# memfd could be added but brakes compatibility with kernels < 3.17
# ipc-channel = { version = "0.17", features = ["memfd"] }
ipc-channel = "0.17"
itertools = "0.11"
nix = { version = "0.27", features = ["process", "user"] }
serde = { version = "1.0", features = ["derive"] }
Expand Down

0 comments on commit 6dee2e5

Please sign in to comment.