1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-12-16 05:51:05 +01:00

Split the root finding in a separate library

This commit is contained in:
Théophane Hufschmitt 2022-04-11 10:20:36 +02:00
parent bbde40af3e
commit fbec849281
5 changed files with 209 additions and 181 deletions

View file

@ -412,7 +412,7 @@
CXXFLAGS = prev.lib.optionalString prev.stdenv.hostPlatform.isStatic "-static";
buildPhase = ''
$CXX $CXXFLAGS -std=c++17 nix-find-roots.cc -o nix-find-roots
$CXX $CXXFLAGS -std=c++17 *.cc **/*.cc -I lib -o nix-find-roots
'';
installPhase = ''