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
if compiler != "msvc":
cppstd = _cppstd_default(compiler, version)
if compiler == "apple-clang" and version >= "11":
# forced auto-detection, gnu98 is too old
cppstd = "gnu17"
result.append(("compiler.cppstd", cppstd))
detect_api: apple-clang>=13, using the major as version
Detected profile:
WARN: This profile is a guess of your environment, please check it.
WARN: Defaulted to cppstd='gnu17' for apple-clang.
WARN: The output of this command is not guaranteed to be stable and can change in future Conan versions.
WARN: Use your own profile files for stability.
Saving detected profile to /Users/runner/.conan2/profiles/default
[settings]
arch=x86_64
build_type=Release
compiler=apple-clang
compiler.cppstd=gnu98
compiler.libcxx=libc++
compiler.version=14
os=Macos
The text was updated successfully, but these errors were encountered:
Hi @simoncent thanks a lot for taking the time to report the issue, you're totally right, it's a byproduct of moving the detection api in the PR you pointed at. I've submitted #14837 and fixed the relevant tests that made this possible in the first time :)
The fix will be released in the next few days in the 2.0.13 version
Environment details
Steps to reproduce
I believe this is caused by the removal of
in this commit 7f6430a#diff-054375ca45a4ad879799d84fd9d02d0aae4e517cf4a6be98134ff446712d833d
Logs
The text was updated successfully, but these errors were encountered: