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
Hi! when I try to build for raspberry pi 4 I got the following error:
Compiling async-process v1.0.1
error[E0658]: use of unstable library feature 'process_set_argv0'
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/async-process-1.0.1/src/unix.rs:118:20
|
118 | self.inner.arg0(arg);
| ^^^^
|
= note: for more information, see rust-lang/rust#66510
error: aborting due to previous error
For more information about this error, try rustc --explain E0658.
error: could not compile async-process.
warning: build failed, waiting for other jobs to finish...
error: build failed
error E0658
An unstable feature was used.
Erroneous code example:
#[repr(u128)] // error: use of unstable library feature 'repr128'
enum Foo {
Bar(u64),
}
If you're using a stable or a beta version of rustc, you won't be able to use
any unstable features. In order to do so, please switch to a nightly version of
rustc (by using rustup).
If you're using a nightly version of rustc, just add the corresponding feature
to be able to use it:
# first, run container with rust with current zenith source folder mounted at /usr/src/myapp
docker run -it --rm -v $PWD:/usr/src/myapp -w /usr/src/myapp rust:1 bash
# and then inside container
apt-get update
apt-get install libclang-dev
make
exit# and then run it
target/release/zenith
Hi! when I try to build for raspberry pi 4 I got the following error:
Compiling async-process v1.0.1
error[E0658]: use of unstable library feature 'process_set_argv0'
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/async-process-1.0.1/src/unix.rs:118:20
|
118 | self.inner.arg0(arg);
| ^^^^
|
= note: for more information, see rust-lang/rust#66510
error: aborting due to previous error
For more information about this error, try
rustc --explain E0658
.error: could not compile
async-process
.warning: build failed, waiting for other jobs to finish...
error: build failed
error E0658
An unstable feature was used.
Erroneous code example:
If you're using a stable or a beta version of rustc, you won't be able to use
any unstable features. In order to do so, please switch to a nightly version of
rustc (by using rustup).
If you're using a nightly version of rustc, just add the corresponding feature
to be able to use it:
(END)
The text was updated successfully, but these errors were encountered: