-
Notifications
You must be signed in to change notification settings - Fork 50
Closed
Labels
Description
This came up in the context of Servo:
servo/servo#11969 (comment)
Basically, the issue is that the MSVC codepath uses res to create a .res file, but just renames it to .lib:
https://github.com/mxre/winres/blob/master/lib.rs#L466
Instead, it could either:
- Call cvtres and then lib to turn the .res into a .lib
- Pass the .res file directly along to the final link.exe line that is being executed by rustc
Do you have a preference, @mxre?
CC @Coder206
Reactions are currently unavailable