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
6 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
expat
46
];
47
48
-
# Needed with GCC 12
49
-
env.NIX_CFLAGS_COMPILE = "-Wno-error=uninitialized";
0
0
0
0
50
51
postInstall = ''
52
mkdir -p $out/share/osrm-backend
···
45
expat
46
];
47
48
+
env.NIX_CFLAGS_COMPILE = toString [
49
+
# Needed with GCC 12
50
+
"-Wno-error=uninitialized"
51
+
# Needed with GCC 14
52
+
"-Wno-error=maybe-uninitialized"
53
+
];
54
55
postInstall = ''
56
mkdir -p $out/share/osrm-backend