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
When attempting to cross compile this crate for Windows under Linux using the build feature, the configure script reports:
configure: Unknown OS 'windows'.
If you think configure made a mistake, make sure you are using the latest
version from Git. If the latest version fails, report the problem to the
[email protected] mailing list or IRC #ffmpeg on irc.libera.chat.
Include the log file "ffbuild/config.log" produced by configure as this will help
solve the problem.
I believe this happens because the build script sets the configure argument target_os to the value of CARGO_CFG_TARGET_OS, which Cargo sets as windows, a value the configure does not expect.
The text was updated successfully, but these errors were encountered:
When attempting to cross compile this crate for Windows under Linux using the
build
feature, the configure script reports:I believe this happens because the build script sets the configure argument
target_os
to the value ofCARGO_CFG_TARGET_OS
, which Cargo sets aswindows
, a value the configure does not expect.The text was updated successfully, but these errors were encountered: