tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
tinycc: fix static build
authored by
happysalada
and committed by
Yt
2 years ago
c19d8926
aa0d00f5
+3
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
compilers
tinycc
default.nix
+3
-1
pkgs/development/compilers/tinycc/default.nix
···
75
76
outputs = [ "out" "info" "man" ];
77
78
-
doCheck = true;
0
0
79
checkTarget = "test";
80
# https://www.mail-archive.com/tinycc-devel@nongnu.org/msg10142.html
81
preCheck = lib.optionalString (stdenv.isDarwin && stdenv.isx86_64) ''
···
75
76
outputs = [ "out" "info" "man" ];
77
78
+
# Test segfault for static build
79
+
doCheck = !stdenv.hostPlatform.isStatic;
80
+
81
checkTarget = "test";
82
# https://www.mail-archive.com/tinycc-devel@nongnu.org/msg10142.html
83
preCheck = lib.optionalString (stdenv.isDarwin && stdenv.isx86_64) ''