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
Compiler+version: Visual Studio 2022, latest update
Conan version: 2.0.10
Python version:
Steps to reproduce
conan profile detect
Logs
Found msvc 17
Detected profile:
[settings]
arch=x86_64
build_type=Release
compiler=msvc
compiler.cppstd=14
compiler.runtime=dynamic
compiler.version=193
os=Windows
WARN: This profile is a guess of your environment, please check it.
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.
With the native ARM64 toolchain installed - this should default to armv8
Environment details
Steps to reproduce
conan profile detect
Logs
With the native
ARM64
toolchain installed - this should default toarmv8
This is a small issue here:
conan/conans/client/conf/detect.py
Lines 334 to 336 in e127e23
where
platform.machine()
returnsARM64
(upper case), which is not considered in the conditional, so it falls back to "contains 64" and maps tox86_64
The text was updated successfully, but these errors were encountered: