tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
rr: set Wno-error and turn off fortify hardening
Robin Gloster
9 years ago
4ee2b2ab
1f978b74
+5
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
analysis
rr
default.nix
+5
pkgs/development/tools/analysis/rr/default.nix
···
19
19
buildInputs = [ cmake libpfm zlib python pkgconfig pythonPackages.pexpect which procps gdb ];
20
20
cmakeFlags = "-DCMAKE_C_FLAGS_RELEASE:STRING= -DCMAKE_CXX_FLAGS_RELEASE:STRING=";
21
21
22
22
+
# we turn on additional warnings due to hardening
23
23
+
NIX_CFLAGS_COMPILE = "-Wno-error";
24
24
+
25
25
+
hardeningDisable = [ "fortify" ];
26
26
+
22
27
enableParallelBuilding = true;
23
28
24
29
# FIXME