tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
superlu: fix build with clang 16
Weijia Wang
2 years ago
95d8200a
4c838ddf
+7
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
science
math
superlu
default.nix
+7
pkgs/development/libraries/science/math/superlu/default.nix
···
21
21
"-DUSE_XSDK_DEFAULTS=true"
22
22
];
23
23
24
24
+
env = lib.optionalAttrs stdenv.cc.isClang {
25
25
+
NIX_CFLAGS_COMPILE = toString [
26
26
+
"-Wno-error=implicit-function-declaration"
27
27
+
"-Wno-error=implicit-int"
28
28
+
];
29
29
+
};
30
30
+
24
31
patches = [
25
32
./add-superlu-lib-as-dependency-for-the-unit-tests.patch
26
33
];