diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm index b7d15d07307..e3ce0069f01 100644 --- a/gnu/packages/gcc.scm +++ b/gnu/packages/gcc.scm @@ -88,6 +88,11 @@ where the OS part is overloaded to denote a specific ABI---into GCC (string-prefix? "powerpc-" target)) '("--with-long-double-128")) + ;; GCC 11.3.0's includes , which MinGW lacks: + ;; . + ((target-mingw? target) + '("--disable-gcov")) + (else ;; TODO: Add `arm.*-gnueabi', etc. '())))