1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

cdrtools: remove -fpermissive due to revert of gcc_14 as default

This fails to build with gcc_13 as default, opting to remove the flag
for the time being instead of conditioning to the gcc version

Not showing up on hydra at the moment
This commit is contained in:
Fabián Heredia Montiel 2024-09-28 10:24:31 -06:00
parent aef46265d9
commit 76aeca8297

View file

@ -27,10 +27,6 @@ stdenv.mkDerivation rec {
makeFlags = [ "GMAKE_NOWARN=true" "INS_BASE=/" "INS_RBASE=/" "DESTDIR=${placeholder "out"}" ];
env = lib.optionalAttrs stdenv.cc.isGNU {
NIX_CFLAGS_COMPILE = "-fpermissive";
};
enableParallelBuilding = false; # parallel building fails on some linux machines
hardeningDisable = lib.optional stdenv.hostPlatform.isMusl "fortify";