We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37acb94 commit fb482d7Copy full SHA for fb482d7
pkgs/by-name/ap/aprx/package.nix
@@ -18,13 +18,11 @@ stdenv.mkDerivation {
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
- );
+ env.NIX_CFLAGS_COMPILE = toString ([
+ "-fcommon"
+ "-O2"
+ "-Wno-implicit-int" # clang, gcc 14
+ ]);
28
29
configureFlags = [
30
"--with-erlangstorage"
0 commit comments