Closed JamesPei closed 6 days ago
Hi @JamesPei
Thanks for your question.
settings.os.embedded_libc
This is not an standard default Conan setting.
This means that someone added embedded_libc
as an os
subsetting in your settings.yml
or settings_user.yml
in your cache (which can be installed with conan config install
)
Then, your default profile is not defining the embedded_libc
, because that is a custom setting Conan is not aware of. That should be solved:
conan config install
the right configuration from your organizationos.embedded_libc=something
in your profiles to satisfy the need of defining it (established by your settings)thank you @memsharded Problem solved. I'm just a little weird because I'm doing all this in a clean environment, so, I don't know why there are these items in the ~/.conan2/settings.yml; But that's okay. Anyway, everything's fine now
Great, closing the issue as solved then, thanks for your feedback!
I just try to run an example of offical tutorial when I execute
conan install . --output-folder build --build=missing
I got this:why? conan version is 2.9.2,and it's same at conan 2.8.0