diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2023-01-22 12:43:58 -0500 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2023-01-22 13:09:44 -0800 |
commit | 2df484176ff63763c47406701f2cbcbea2b66679 (patch) | |
tree | e96f69690ac1f61714bdc88c8d6d97b449cc34ba | |
parent | eff385a315c63d25b9cd3735af9fd15deb276bcb (diff) | |
download | meson-2df484176ff63763c47406701f2cbcbea2b66679.zip meson-2df484176ff63763c47406701f2cbcbea2b66679.tar.gz meson-2df484176ff63763c47406701f2cbcbea2b66679.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.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py index 9ad40fb..37c32bc 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': |