On 7/18/23 02:52, Miguel Ojeda wrote:
`rustc` outputs by default the temporary files (i.e. the ones saved by `-Csave-temps`, such as `*.rcgu*` files) in the current working directory when `-o` and `--out-dir` are not given (even if `--emit=x=path` is given, i.e. it does not use those for temporaries).
Since out-of-tree modules are compiled from the `linux` tree, `rustc` then tries to create them there, which may not be accessible.
Thus pass `--out-dir` explicitly, even if it is just for the temporary files.
Reported-by: Raphael Nestler raphael.nestler@gmail.com Closes: https://github.com/Rust-for-Linux/linux/issues/1015 Reported-by: Andrea Righi andrea.righi@canonical.com Tested-by: Raphael Nestler raphael.nestler@gmail.com Tested-by: Andrea Righi andrea.righi@canonical.com Cc: stable@vger.kernel.org Signed-off-by: Miguel Ojeda ojeda@kernel.org
[...]
Reviewed-by: Martin Rodriguez Reboredo yakoyoku@gmail.com