I have added a new library crate and a binary crate
I added them in the Cargo.toml
How do I actually build and run my new binary crate?
➜ rust git:(master) ✗ ./x.py build -i src/rlsl --stage 1 --keep-stage 0
Updating submodules
Finished dev [unoptimized] target(s) in 0.0 secs
Warning: no rules matched /home/maik/projects/rust/src/rlsl.
Build completed successfully in 0:00:01
What does this mean? Warning: no rules matched /home/maik/projects/rust/src/rlsl.
I have looked at rust/src/bootstrap at master · rust-lang/rust · GitHub
Adding a new compiler crate? Look no further! Adding crates can be done by adding a new directory with Cargo.toml followed by configuring all Cargo.toml files accordingly.
Did I miss something obvious?