Replies: 6 comments 5 replies
-
建议检查一下你的rust编译环境 |
Beta Was this translation helpful? Give feedback.
-
rustup --version
cat .bash_profile
cat $HOME/.cargo/env #!/bin/sh
# rustup shell setup
# affix colons on either side of $PATH to simplify matching
case ":${PATH}:" in
*:"$HOME/.cargo/bin":*)
;;
*)
# Prepending path in case a system-installed rustc needs to be overridden
export PATH="$HOME/.cargo/bin:$PATH"
;;
esac 运行步骤:
|
Beta Was this translation helpful? Give feedback.
-
兄弟,编译环境不单是这些,还有你编译的依赖是不是正常加载、feather、是执行到什么状态出问题、会不会是oom…… |
Beta Was this translation helpful? Give feedback.
-
好了吗 我的同样的问题 |
Beta Was this translation helpful? Give feedback.
-
大佬们怎么解决的 |
Beta Was this translation helpful? Give feedback.
-
大佬们怎么解决的 求解决方法 |
Beta Was this translation helpful? Give feedback.
-
项目无法运行
执行如下命令:
cd core/src/main/rust/shadowsocks-rust
rustup target add armv7-linux-androideabi aarch64-linux-android i686-linux-android x86_64-linux-android
cargo build
build项目
错误如下:
Beta Was this translation helpful? Give feedback.
All reactions