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 you list a syntax extension as a cargo dependency, even with plugin = true, if your chosen target doesn't have dylib outputs available, cargo will complain even if the target being built is a staticlib/executable.
This isn't working as intended, right?
For an example, try compiling the zinc (root crate) with --target=thumbv7m-none-eabi from mcoffin/zinc@ac834f2 which depends on the syntax extension crate ioreg from the same project. The syntax extension crate is correctly compiled for the host architecture, but cargo gives an error after compilation about dylib outputs not being available for thumbv7m-none-eabi (which is correct, but shouldn't matter).