-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Xplat native build with existing artifacts doesn't rebuild if only symbol stripping configuration has changed #20086
Comments
@dagood is this still an issue? |
Yes, it still repros as of 70e7e11. |
I'm surprised that this still applies as our native build isn't incremental. |
Huh, it always has been in my experience, and it is currently in Core-Setup at least. (I haven't built CoreFX in a while though.) |
It's incremental now again in corefx as that was fixed recently. I'm not exactly sure what the action item here is (this is currently the oldest issue on our infra backlog). @dagood do you have suggestions? |
If the issue is something that someone cares to fix, I would first verify the repro steps (although I really doubt it's been accidentally fixed), then fix it:
I doubt it's a big issue if the dev is aware of it, or in general suspects the incremental build is causing problems (the workaround--a fresh build--is pretty typical), however it could be a very headache-inducing surprise. |
Due to lack of recent activity, this issue has been marked as a candidate for backlog cleanup. It will be closed if no further activity occurs within 14 more days. Any new comment (by anyone, not necessarily the author) will undo this process. This process is part of our issue cleanup automation. |
This issue will now be closed since it had been marked |
CMake (or Make) doesn't rebuild the xplat binaries when
-stripSymbols
is set differently than the command that built what's inbin
. Symbol stripping happens on build, so this means someone might run a "successful" build command that ends up with unexpected outputs in this very specific case. Repro:Workaround: clean the native artifacts to force a new build.
This was a known issue introduced with dotnet/corefx#15440.
/cc @ellismg
The text was updated successfully, but these errors were encountered: