aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2023-01-22 12:43:58 -0500
committerNirbheek Chauhan <nirbheek@centricular.com>2023-02-06 23:37:54 +0530
commitc23a14d827d7db769f9e29309675ddaccda1b77b (patch)
tree24d481e43b2a79da0d71ba618dda717f546e6a7c
parentb127c2f55232bcc5c2fbae9558735f7cc27ef42e (diff)
downloadmeson-c23a14d827d7db769f9e29309675ddaccda1b77b.zip
meson-c23a14d827d7db769f9e29309675ddaccda1b77b.tar.gz
meson-c23a14d827d7db769f9e29309675ddaccda1b77b.tar.bz2
Revert "debug cygwin CI"
This reverts commit 79d7891746a7864a1407d48eac8a753b225ec6c3. This debug print probably should not have ended up live. Moreover, the function it debugs is, surprisingly, called rather often. Adding I/O to it causes it to begin to noticeably lag, on the scale of adding actual *minutes* to a setup run. Fixes #11322
-rw-r--r--mesonbuild/environment.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py
index 2e2a228..9691cf1 100644
--- a/mesonbuild/environment.py
+++ b/mesonbuild/environment.py
@@ -289,7 +289,6 @@ 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':