You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ rustc test.rs --emit=llvm-ir,asm --crate-type=lib -O -o test
# works
$ rustup run beta rustc test.rs --emit=llvm-ir,asm --crate-type=lib -O -o test
error: multiple input filenames provided
$ rustup run beta rustc -- test.rs --emit=llvm-ir,asm --crate-type=lib -O -o test
error: multiple input filenames provided
$ rustup run beta -- rustc test.rs --emit=llvm-ir,asm --crate-type=lib -O -o test
error: multiple input filenames provided
rustup assumes --emit=llvm-ir,asm is not a single argument for some reason and splits --emit=llvm-ir,asm on the comma, passing rustc two distinct arguments.
The text was updated successfully, but these errors were encountered:
rustup assumes
--emit=llvm-ir,asm
is not a single argument for some reason and splits--emit=llvm-ir,asm
on the comma, passing rustc two distinct arguments.The text was updated successfully, but these errors were encountered: