aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2022-12-10 23:15:27 -0500
committerJussi Pakkanen <jpakkane@gmail.com>2022-12-11 22:43:31 +0200
commit79d7891746a7864a1407d48eac8a753b225ec6c3 (patch)
tree071c77daf5468aabe9ecbe425bb88f13746806f0
parent255f335d8e305d4cad261484d5d3e0f80b82d886 (diff)
downloadmeson-79d7891746a7864a1407d48eac8a753b225ec6c3.zip
meson-79d7891746a7864a1407d48eac8a753b225ec6c3.tar.gz
meson-79d7891746a7864a1407d48eac8a753b225ec6c3.tar.bz2
debug cygwin CI
-rw-r--r--mesonbuild/environment.py1
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':