-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Always pass /DEBUG
flag to MSVC linker
#28505
Conversation
This is pending discussion on the referenced issue. |
I'm ok with this as it seems the only downside is an extra file is generated, but that already happens for dylibs and it's not necessarily harming anyone either! I'm also not too too worried about having a switch to not pass this flag as it doesn't seem too crucial. Thoughts @brson? |
Still waiting for some more discussion. |
With the dsymutil precedent I'm mildly ok with having pdbs just silently emitted. |
Looks like @bors is stuck? |
It looks like the android bot didn't start for whatever reason. |
Depending on the OS, there might be an additional artifacts for debuginfo (dSYM folder for macs, .pbd file for windows). Given that we can't disable `.pdb` for windows[1], let's just ignore all filenames! [1]: rust-lang/rust#28505)
Closes #28448.
r? @brson