You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying to install sozu on a Orange Pi 5 but I was getting error could not find 'x86_64' in 'arch' from kawa.
There is a merged pull request that fixes this issue but has not been yet updated on crates.io.
I had to change the kawa dependency manually to point to the git repo and add features = [], then everything worked fine.
The text was updated successfully, but these errors were encountered:
Hello, sorry for the late response.
No, it hasn't been fixed yet, I'm still getting the exact same error.
Now I didn't have to point to the git repo but I did have to change the features.
The problem has to do with the feature simd which is not compatible with aarch64.
To fix it I had to modify lib/Cargo.toml and remove the line simd = ["kawa/simd"] and also change default = ["simd"] to default = [] under [features].
Sorry, I didn't see your answer. Yes as of today the building process is a bit cumbersome. You can achieve the same result by building sozu without default features as documented in the lib README. In the future, I hope the switch will be based on the targeted architecture so the user doesn't have to fiddle with the features. For now, we are primarily focused on more urgent development tasks.
I was trying to install
sozu
on a Orange Pi 5 but I was getting errorcould not find 'x86_64' in 'arch'
fromkawa
.There is a merged pull request that fixes this issue but has not been yet updated on crates.io.
I had to change the
kawa
dependency manually to point to the git repo and addfeatures = []
, then everything worked fine.The text was updated successfully, but these errors were encountered: