We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a1b77a3 + 174d1a5 commit 28c1750Copy full SHA for 28c1750
1 file changed
eb_hooks.py
@@ -67,6 +67,20 @@
67
}
68
69
70
+# Ensure that we don't print any messages in --terse mode
71
+orig_print_msg = print_msg
72
+orig_print_warning = print_warning
73
+
74
+def print_msg(*args, **kwargs):
75
+ if not build_option('terse'):
76
+ orig_print_msg(*args, **kwargs)
77
78
79
+def print_warning(*args, **kwargs):
80
81
+ orig_print_warning(*args, **kwargs)
82
83
84
def is_gcccore_1220_based(**kwargs):
85
# ecname, ecversion, tcname, tcversion):
86
"""
0 commit comments