Closed
Description
Just like ./x.py build
ends by filling the stage 2 directory...
Copying stage1 rustc from stage1 (x86_64-unknown-linux-gnu -> x86_64-unknown-linux-gnu / x86_64-unknown-linux-gnu)
Copying stage2 compiler (x86_64-unknown-linux-gnu)
Copying stage2 rustc from stage1 (x86_64-unknown-linux-gnu -> x86_64-unknown-linux-gnu / x86_64-unknown-linux-gnu)
... I would expect ./x.py build -i
to do the same. But it does not, the output ends with
Copying stage1 rustc from stage1 (x86_64-unknown-linux-gnu -> x86_64-unknown-linux-gnu / x86_64-unknown-linux-gnu)
Build completed successfully in 0:00:03
So to get a usable stage 2 while using incremental compilation, I need to ./x.py build -i && ./x.py build
. That seems wrong.