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
Solver: Check whether components are buildable in the current environment.
This commit handles the most common case of issue #5325 by checking that each
component that is required as a dependency is buildable in the current
environment, where environment refers to the compiler, os, arch, and global flag
constraints. The solver records whether each component is buildable in the
package's PInfo during index conversion. Then it checks that each required
component is buildable in the validation phase, similar to the check for missing
components.
The buildable check can give false-positives, because it only considers flags
that are set by unqualified flag constraints, and it doesn't check whether the
intra-package dependencies of a component are buildable. The check is also
incomplete because it is performed before any automatic flags are assigned. It
is possible for the solver to later choose a value for a flag that makes the
package unbuildable.
showFR _ (NewPackageIsMissingRequiredComponent comp dr) =" (does not contain "++ showExposedComponent comp ++", which is required by "++ showDependencyReason dr ++")"
113
+
showFR _ (NewPackageHasUnbuildableRequiredComponent comp dr) =" ("++ showExposedComponent comp ++" is not buildable in the current environment, but it is required by "++ showDependencyReason dr ++")"
113
114
showFR _ (PackageRequiresMissingComponent qpn comp) =" (requires "++ showExposedComponent comp ++" from "++ showQPN qpn ++", but the component does not exist)"
115
+
showFR _ (PackageRequiresUnbuildableComponent qpn comp) =" (requires "++ showExposedComponent comp ++" from "++ showQPN qpn ++", but the component is not buildable in the current environment)"
114
116
showFR _ CannotInstall=" (only already installed instances can be used)"
115
117
showFR _ CannotReinstall=" (avoiding to reinstall a package with same version but new dependencies)"
116
118
showFR _ Shadowed=" (shadowed by another installed package with same version)"
0 commit comments