mirror of
https://github.com/sigoden/dufs.git
synced 2026-04-08 16:49:02 +03:00
[GH-ISSUE #238] Fail to install dufs on my RISC-V board #122
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ifsheldon on GitHub (Jun 19, 2023).
Original GitHub issue: https://github.com/sigoden/dufs/issues/238
Problem
I failed to install duds on my RISC-V board. And I think this is due to
ring.While you cannot fix this in a simple way, maybe you can add a feature gate to not compile all the code related to TLS which may indirectly depend on
ring? Because I want to usedufsin my private network, I don't need secure connections.Log
After
cargo install dufs, I got the followingEnvironment:
@sigoden commented on GitHub (Jun 20, 2023):
you can try
cargo install --no-default-features dufs.Note: The tls feature of dufs depends on rustls, and rustls depends on ring. But ring does not support risc-v.
@ifsheldon commented on GitHub (Jun 20, 2023):
Thanks a lot! I got it working! I suggest to add a tip in README to tell users that dufs can be compiled without TLS so possibly many many arch can run it without ring getting in the way.