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
I created a new project using cargo, and then created a build.rs file with only an empty main function.
Then I execute \VC\Auxiliary\Build\vcvarsall.bat x86 and then execute cargo build --release --target=i686-pc-windows-msvc and it will report an error: "The library computer type "x86" conflicts with the target computer type "x64" "
I think there may be a bug in the msvc detection part of Rustc.
The text was updated successfully, but these errors were encountered:
Thanks for the report! Could you try with the nightly compiler in case this is fixed in the next version? If you're using rustup you can use nightly like this:
I created a new project using cargo, and then created a build.rs file with only an empty main function.
Then I execute
\VC\Auxiliary\Build\vcvarsall.bat x86
and then executecargo build --release --target=i686-pc-windows-msvc
and it will report an error: "The library computer type "x86" conflicts with the target computer type "x64" "I think there may be a bug in the msvc detection part of Rustc.
The text was updated successfully, but these errors were encountered: