We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29e8a3d commit 7107847Copy full SHA for 7107847
reference/conanfile/attributes/binary_model.inc
@@ -92,7 +92,7 @@ It's also feasible to check the possible values defined in :ref:`reference_confi
92
self.output.info(f"[HOST] Versions for {str(self.settings.compiler)}: {', '.join(compiler_versions)}")
93
# Print the available versions for the compiler used by the BUILD profile
94
compiler_versions = self.settings_build.compiler.version.possible_values()
95
- self.output.info(f"[BUILD] Versions for {str(self.settings.compiler)}: {', '.join(compiler_versions)}")
+ self.output.info(f"[BUILD] Versions for {str(self.settings_build.compiler)}: {', '.join(compiler_versions)}")
96
97
98
As you can see above, doing ``self.settings.possible_values()`` returns the
0 commit comments