lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

gcc: disable libssp on cygwin

+1 -1
+1 -1
pkgs/development/compilers/gcc/common/configure-flags.nix
··· 258 258 ++ lib.optional ( 259 259 lib.systems.equals targetPlatform hostPlatform && targetPlatform.isx86_32 260 260 ) "--with-arch=${stdenv.hostPlatform.parsed.cpu.name}" 261 - ++ lib.optional targetPlatform.isNetBSD "--disable-libssp" # Provided by libc. 261 + ++ lib.optional (targetPlatform.isNetBSD || targetPlatform.isCygwin) "--disable-libssp" # Provided by libc. 262 262 ++ lib.optionals hostPlatform.isSunOS [ 263 263 "--enable-long-long" 264 264 "--enable-libssp"