tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
osrm-backend: evade -Werror, fix build
Julius Michaelis
5 months ago
3af30070
0bd24b53
+6
-2
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
os
osrm-backend
package.nix
+6
-2
pkgs/by-name/os/osrm-backend/package.nix
···
45
45
expat
46
46
];
47
47
48
48
-
# Needed with GCC 12
49
49
-
env.NIX_CFLAGS_COMPILE = "-Wno-error=uninitialized";
48
48
+
env.NIX_CFLAGS_COMPILE = toString [
49
49
+
# Needed with GCC 12
50
50
+
"-Wno-error=uninitialized"
51
51
+
# Needed with GCC 14
52
52
+
"-Wno-error=maybe-uninitialized"
53
53
+
];
50
54
51
55
postInstall = ''
52
56
mkdir -p $out/share/osrm-backend