-
Notifications
You must be signed in to change notification settings - Fork 992
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue with 'automatic' compatible packages and custom package ids (#1…
…6772) * Issue with 'automatic' compatible packages and custom package ids In case the recipe uses its own package_id() and compatible packages are generated automatically (e.g. Visual Studio vs msvc), then the compatible packages will use wrong 'base' info set for the compatible package id generation. In case the recipe's own package_id() erases a few options / settings, the compatible packages will not know about it, as those are generated prior the recipe's package_id() is being called. The change makes sure that first the recipe's package_id() is called, then the compatible packages are generated, so that they pick up the updated info set. * test that crashes * Making sure msvc_compatible handling partially set compiler settings In case a custom package_id() erased some of the compiler settings for 'msvc', a 'Visual Studio' equivalent should be created that also doesn't have the (possibly) erased elements. --------- Co-authored-by: memsharded <james@conan.io>
- Loading branch information
1 parent
8455c2c
commit 029388d
Showing
3 changed files
with
44 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters