-
Notifications
You must be signed in to change notification settings - Fork 13.4k
"make install" failure #19156
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
Comments
Is this literally the directory it is trying to create or is it mangled due to copy-paste (or something else)? If the former, what's the |
No cut-and-paste error, that's literally what I get. LANG is "en_US.UTF-8". Thanks. |
@ndarilek Can you still replicate this issue? |
We've had enough churn in how our installer works that I think this is probably stale, so closing. |
This is still an issue and should maybe be reopened. Here's the Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provider "virtualbox" do |vb|
vb.memory = "4096"
end
config.vm.provision "shell", inline: <<-SHELL
sudo apt-get update
sudo apt-get install -y git clang cmake
git clone https://github.com/rust-lang/rust.git
cd rust
./configure --prefix=/rust --enable-clang --disable-libcpp --enable-optimize
make
make install
SHELL
end |
Here's the exact error the
|
Just ran into the same error... |
EDIT: It seems to install when running make install as su (read, not sudo) |
These are the build instructions: https://github.com/6c37/crux-ports/blob/3.2/rustc/Pkgfile, I can confirm that other CRUX users who try to compile this port get the same error. |
Help wanted: Attempt to reproduce this in another virtualization solution, see whether there are any relevant Vagrant or Raspberry Pi toolchain bugs |
Since this issue was opened, the build system was completely re-done. I'm going to close; if this still reproduces, please let me know and we can re-open. |
add cargo's git checkouts to the list of paths to mark as read-only in vscode
Trying to build the latest Rust with the ARM Raspberry Pi toolchain. I get the following when running "make install":
I can reproduce this every time. In fact, I'm running the build in Vagrant. The below Vagrantfile causes this for me on "vagrant up":
The text was updated successfully, but these errors were encountered: