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-19 02:55:57 +0530
commite5d77bcedc728bf2eeda7c4d8bfdc54144cf702c (patch)
tree24d481e43b2a79da0d71ba618dda717f546e6a7c
parentb83abd1bed6efc76af13612ad14d94b3fce854ef (diff)
downloadmeson-e5d77bcedc728bf2eeda7c4d8bfdc54144cf702c.zip
meson-e5d77bcedc728bf2eeda7c4d8bfdc54144cf702c.tar.gz
meson-e5d77bcedc728bf2eeda7c4d8bfdc54144cf702c.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':