lol

gccWithoutTargetLibc: disable features that require a libc

Missing these weren't causing any issues because they only require
headers, and gcc was likely using newlib headers. However, these
features must be disabled for `libc = null;` to work properly.

authored by

sanana and committed by
Alyssa Ross
066da58d 5046e89a

+5
+5
pkgs/development/compilers/gcc/common/configure-flags.nix
··· 83 83 "--disable-libatomic" # requires libc 84 84 "--disable-decimal-float" # requires libc 85 85 "--disable-libmpx" # requires libc 86 + "--disable-hosted-libstdcxx" # requires libc 87 + "--disable-libstdcxx-backtrace" 88 + "--disable-linux-futex" 89 + "--disable-libvtv" 90 + "--disable-libitm" 86 91 ] 87 92 ++ lib.optionals crossMingw [ 88 93 "--with-headers=${lib.getDev libcCross}/include"