guix: mirror some arguments from linux-gcc to mingw-w64-gcc

This commit is contained in:
fanquake
2026-04-20 16:48:29 +01:00
parent e0b8fbde89
commit 9c2589630f

View File

@@ -167,11 +167,13 @@ chain for " target " development."))
((#:configure-flags flags)
#~(append #$flags
;; https://gcc.gnu.org/install/configure.html
(list "--enable-threads=posix"
"--enable-default-ssp=yes"
(list "--enable-default-ssp=yes"
"--enable-gprofng=no"
"--enable-host-bind-now=yes"
"--enable-threads=posix"
"--disable-gcov"
"--disable-libgomp"
"--disable-libsanitizer"
"--disable-lto"
"--disable-nls"
#$building-on)))))))
@@ -184,13 +186,13 @@ chain for " target " development."))
((#:configure-flags flags)
#~(append #$flags
;; https://gcc.gnu.org/install/configure.html
(list "--enable-initfini-array=yes"
(list "--enable-cet=yes"
"--enable-default-ssp=yes"
"--enable-default-pie=yes"
"--enable-host-bind-now=yes"
"--enable-standard-branch-protection=yes"
"--enable-cet=yes"
"--enable-gprofng=no"
"--enable-host-bind-now=yes"
"--enable-initfini-array=yes"
"--enable-standard-branch-protection=yes"
"--disable-gcov"
"--disable-libgomp"
"--disable-libquadmath"