diff options
-rw-r--r-- | mesonbuild/environment.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py index f96e63f..0aa0b32 100644 --- a/mesonbuild/environment.py +++ b/mesonbuild/environment.py @@ -230,7 +230,9 @@ def detect_cpu_family(compilers): # Add fixes here as bugs are reported. if trial not in known_cpu_families: - mlog.warning('Unknown CPU family %s, please report this at https://github.com/mesonbuild/meson/issues/new' % trial) + mlog.warning('Unknown CPU family {!r}, please report this at ' + 'https://github.com/mesonbuild/meson/issues/new with the' + 'output of `uname -a` and `cat /proc/cpuinfo`'.format(trial)) return trial |