-
-
Notifications
You must be signed in to change notification settings - Fork 235
Closed
Labels
Description
I'm attempting to compile my project via cargo build, but compilation freezes when compiling piston. Eventually it exits out with the following error:
vagrant@vagrant-ubuntu-trusty-32:/vagrant$ cargo build
Fresh image v0.0.0 (https://github.com/PistonDevelopers/rust-image)
Fresh codegen v0.0.1 (https://github.com/AngryLawyer/rust-sdl2)
Fresh graphics v0.0.0 (https://github.com/PistonDevelopers/rust-graphics)
Compiling piston v0.0.0 (https://github.com/PistonDevelopers/piston)
Fresh gl v0.0.1 (https://github.com/bjz/gl-rs)
Fresh sdl2 v0.0.1 (https://github.com/AngryLawyer/rust-sdl2)
Fresh opengl_graphics v0.0.0 (https://github.com/PistonDevelopers/opengl_graphics)
Could not execute process `rustc src/lib.rs --crate-type lib --out-dir /vagrant/piston/target -L /vagrant/piston/target -L /vagrant/piston/target/deps` (status=9)
Attempting to clone and build piston individually with cargo build results in the following error:
vagrant@vagrant-ubuntu-trusty-32:/vagrant/piston$ cargo build
Compiling piston v0.0.0 (file:/vagrant/piston)
Could not execute process `rustc src/lib.rs --crate-type lib --out-dir /vagrant/piston/target -L /vagrant/piston/target -L /vagrant/piston/target/deps` (status=9)
Attempting to build piston with the above command results in compilation freezing and no progress being made (it doesn't error or crash, just waits for the command to exit):
vagrant@vagrant-ubuntu-trusty-32:/vagrant/piston$ rustc src/lib.rs --crate-type lib --out-dir /vagrant/piston/target -L /vagrant/piston/target -L /vagrant/piston/target/deps
Any ideas?
rustc -v: rustc 0.11.0-pre
uname -a: Linux vagrant-ubuntu-trusty-32 3.13.0-29-generic #53-Ubuntu SMP Wed Jun 4 21:02:19 UTC 2014 i686 i686 i686 GNU/Linux
Reactions are currently unavailable