aprx: fix build with gcc 14

+5 -7
+5 -7
pkgs/by-name/ap/aprx/package.nix
··· 18 19 nativeBuildInputs = [ perl ]; 20 21 - env.NIX_CFLAGS_COMPILE = toString ( 22 - [ 23 - "-fcommon" 24 - "-O2" 25 - ] 26 - ++ lib.optional stdenv.cc.isClang "-Wno-error=implicit-int" 27 - ); 28 29 configureFlags = [ 30 "--with-erlangstorage"
··· 18 19 nativeBuildInputs = [ perl ]; 20 21 + env.NIX_CFLAGS_COMPILE = toString ([ 22 + "-fcommon" 23 + "-O2" 24 + "-Wno-implicit-int" # clang, gcc 14 25 + ]); 26 27 configureFlags = [ 28 "--with-erlangstorage"