New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Getting an error running make install #1064

Closed
nikitavoloboev opened this Issue Aug 3, 2017 · 7 comments

Comments

Projects
None yet
3 participants
@nikitavoloboev

nikitavoloboev commented Aug 3, 2017

Here is the error :

error[E0432]: unresolved import `std::cmp::Reverse`
  --> src/ls/ls.rs:34:5
   |
34 | use std::cmp::Reverse;
   |     ^^^^^^^^^^^^^^^^^ no `Reverse` in `cmp`

error: aborting due to previous error

error: Could not compile `ls`.
Build failed, waiting for other jobs to finish...
error: build failed
make: *** [build-uutils] Error 101

Thank you for any help.

@Minoru

This comment has been minimized.

Show comment
Hide comment
@Minoru

Minoru Aug 3, 2017

Contributor

Apparently it only became stable in 1.19.0. What version of Rust do you have? (rustc --version will do.)

Contributor

Minoru commented Aug 3, 2017

Apparently it only became stable in 1.19.0. What version of Rust do you have? (rustc --version will do.)

@nikitavoloboev

This comment has been minimized.

Show comment
Hide comment
@nikitavoloboev

nikitavoloboev Aug 3, 2017

Got rustc 1.16.0

nikitavoloboev commented Aug 3, 2017

Got rustc 1.16.0

@nikitavoloboev

This comment has been minimized.

Show comment
Hide comment
@nikitavoloboev

nikitavoloboev Aug 3, 2017

I can't find a way to update it aside from running curl again from official web page of Rust.

What is the usual way people update Rust?

nikitavoloboev commented Aug 3, 2017

I can't find a way to update it aside from running curl again from official web page of Rust.

What is the usual way people update Rust?

@Minoru

This comment has been minimized.

Show comment
Hide comment
@Minoru

Minoru Aug 3, 2017

Contributor

That's too old. Either upgrade or build an older commit; 3c3f5ab is the one that started using Reverse, so its parent, 4a5b76f, will do nicely.

I believe the universal update path is rustup utility, but I'm on Linux and I'm lazy, so I'm just using whatever is in the package repository.

Contributor

Minoru commented Aug 3, 2017

That's too old. Either upgrade or build an older commit; 3c3f5ab is the one that started using Reverse, so its parent, 4a5b76f, will do nicely.

I believe the universal update path is rustup utility, but I'm on Linux and I'm lazy, so I'm just using whatever is in the package repository.

@nikitavoloboev

This comment has been minimized.

Show comment
Hide comment
@nikitavoloboev

nikitavoloboev Aug 3, 2017

Updated rust.

Not I get this error :

install: /Users/nikivi/play/coreutils/target/release/deps/truncate: No such file or directory
install: /Users/nikivi/play/coreutils/target/release/deps/tsort: No such file or directory
install: /Users/nikivi/play/coreutils/target/release/deps/tty: No such file or directory
install: /Users/nikivi/play/coreutils/target/release/deps/uname: No such file or directory
install: /Users/nikivi/play/coreutils/target/release/deps/unexpand: No such file or directory
install: /Users/nikivi/play/coreutils/target/release/deps/uniq: No such file or directory
install: /Users/nikivi/play/coreutils/target/release/deps/unlink: No such file or directory
install: /Users/nikivi/play/coreutils/target/release/deps/uptime: No such file or directory
install: /Users/nikivi/play/coreutils/target/release/deps/users: No such file or directory
install: /Users/nikivi/play/coreutils/target/release/deps/wc: No such file or directory
install: /Users/nikivi/play/coreutils/target/release/deps/who: No such file or directory
install: /Users/nikivi/play/coreutils/target/release/deps/whoami: No such file or directory
install: /Users/nikivi/play/coreutils/target/release/deps/yes: No such file or directory
make: *** [install] Error 71

nikitavoloboev commented Aug 3, 2017

Updated rust.

Not I get this error :

install: /Users/nikivi/play/coreutils/target/release/deps/truncate: No such file or directory
install: /Users/nikivi/play/coreutils/target/release/deps/tsort: No such file or directory
install: /Users/nikivi/play/coreutils/target/release/deps/tty: No such file or directory
install: /Users/nikivi/play/coreutils/target/release/deps/uname: No such file or directory
install: /Users/nikivi/play/coreutils/target/release/deps/unexpand: No such file or directory
install: /Users/nikivi/play/coreutils/target/release/deps/uniq: No such file or directory
install: /Users/nikivi/play/coreutils/target/release/deps/unlink: No such file or directory
install: /Users/nikivi/play/coreutils/target/release/deps/uptime: No such file or directory
install: /Users/nikivi/play/coreutils/target/release/deps/users: No such file or directory
install: /Users/nikivi/play/coreutils/target/release/deps/wc: No such file or directory
install: /Users/nikivi/play/coreutils/target/release/deps/who: No such file or directory
install: /Users/nikivi/play/coreutils/target/release/deps/whoami: No such file or directory
install: /Users/nikivi/play/coreutils/target/release/deps/yes: No such file or directory
make: *** [install] Error 71
@Arcterus

This comment has been minimized.

Show comment
Hide comment
@Arcterus

Arcterus Aug 3, 2017

Member

I imagine this is the same issue as #1040 (which I will fix soon).

Member

Arcterus commented Aug 3, 2017

I imagine this is the same issue as #1040 (which I will fix soon).

@Arcterus

This comment has been minimized.

Show comment
Hide comment
@Arcterus

Arcterus Dec 5, 2017

Member

I believe this is fixed now, but let me know if this is still an issue.

Member

Arcterus commented Dec 5, 2017

I believe this is fixed now, but let me know if this is still an issue.

@Arcterus Arcterus closed this Dec 5, 2017

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment