tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
bfs: fix build on darwin
Alan Pearce
2 years ago
241d2d4d
059727c2
+1
-1
1 changed file
expand all
collapse all
unified
split
pkgs
tools
system
bfs
default.nix
+1
-1
pkgs/tools/system/bfs/default.nix
···
15
16
# Disable LTO on darwin. See https://github.com/NixOS/nixpkgs/issues/19098
17
preConfigure = lib.optionalString stdenv.isDarwin ''
18
-
substituteInPlace Makefile --replace "-flto" ""
19
'';
20
21
makeFlags = [ "PREFIX=$(out)" ];
···
15
16
# Disable LTO on darwin. See https://github.com/NixOS/nixpkgs/issues/19098
17
preConfigure = lib.optionalString stdenv.isDarwin ''
18
+
substituteInPlace GNUMakefile --replace "-flto=auto" ""
19
'';
20
21
makeFlags = [ "PREFIX=$(out)" ];