diff options
Diffstat (limited to 'mesonbuild/environment.py')
-rw-r--r-- | mesonbuild/environment.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py index 9691cf1..2e2a228 100644 --- a/mesonbuild/environment.py +++ b/mesonbuild/environment.py @@ -289,6 +289,7 @@ def detect_cpu_family(compilers: CompilersDict) -> str: trial = platform.processor().lower() else: trial = platform.machine().lower() + mlog.debug(f'detecting CPU family based on trial={trial!r}') if trial.startswith('i') and trial.endswith('86'): trial = 'x86' elif trial == 'bepc': |