146 lines
5.8 KiB
Nix
146 lines
5.8 KiB
Nix
{ debug ? false, stage0debug ? false, extraCMakeFlags ? [],
|
|
stdenv, lib, cmake, gmp, gnumake, bash, buildLeanPackage, writeShellScriptBin, runCommand, symlinkJoin, lndir,
|
|
... } @ args:
|
|
with builtins;
|
|
rec {
|
|
inherit stdenv;
|
|
buildCMake = args: stdenv.mkDerivation ({
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ gmp ];
|
|
# https://github.com/NixOS/nixpkgs/issues/60919
|
|
hardeningDisable = [ "all" ];
|
|
dontStrip = (args.debug or debug);
|
|
|
|
postConfigure = ''
|
|
patchShebangs bin
|
|
'';
|
|
} // args // {
|
|
src = args.realSrc or (lib.sourceByRegex args.src [ "[a-z].*" "CMakeLists\.txt" ]);
|
|
cmakeFlags = (args.cmakeFlags or [ "-DSTAGE=1" "-DPREV_STAGE=./faux-prev-stage" "-DUSE_GITHASH=OFF" ]) ++ (args.extraCMakeFlags or extraCMakeFlags) ++ lib.optional (args.debug or debug) [ "-DCMAKE_BUILD_TYPE=Debug" ];
|
|
});
|
|
lean-bin-tools-unwrapped = buildCMake {
|
|
name = "lean-bin-tools";
|
|
realSrc = lib.sourceByRegex ../src [ "CMakeLists\.txt" "bin.*" "include.*" ".*\.in" ];
|
|
preConfigure = ''
|
|
touch empty.cpp
|
|
sed -i 's/find_package.*//;s/add_subdirectory.*//;s/set(LEAN_OBJS.*/set(LEAN_OBJS empty.cpp)/' CMakeLists.txt
|
|
'';
|
|
dontBuild = true;
|
|
installPhase = ''
|
|
mkdir $out
|
|
mv bin/ include/ share/ $out/
|
|
substituteInPlace $out/bin/leanmake --replace "make" "${gnumake}/bin/make"
|
|
substituteInPlace $out/share/lean/lean.mk --replace "/usr/bin/env bash" "${bash}/bin/bash"
|
|
'';
|
|
};
|
|
leancpp = buildCMake {
|
|
name = "leancpp";
|
|
src = ../src;
|
|
buildFlags = [ "leancpp" "shell" ];
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
mv lib/ $out/
|
|
mv shell/CMakeFiles/shell.dir/lean.cpp.o $out/lib
|
|
'';
|
|
};
|
|
# rename derivation so `nix run` uses the right executable name but we still see the stage in the build log
|
|
wrapStage = stage: runCommand "lean" {} ''
|
|
ln -s ${stage} $out
|
|
'';
|
|
stage0 = wrapStage (args.stage0 or (buildCMake {
|
|
name = "lean-stage0";
|
|
src = ../stage0/src;
|
|
debug = stage0debug;
|
|
cmakeFlags = [ "-DSTAGE=0" ];
|
|
extraCMakeFlags = [];
|
|
preConfigure = ''
|
|
ln -s ${../stage0/stdlib} ../stdlib
|
|
'';
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
mv bin/lean $out/bin/
|
|
'';
|
|
}));
|
|
stage = { stage, prevStage, self }:
|
|
let
|
|
desc = "stage${toString stage}";
|
|
build = args: buildLeanPackage.override {
|
|
lean = prevStage;
|
|
leanc = lean-bin-tools-unwrapped;
|
|
# use same stage for retrieving dependencies
|
|
lean-leanDeps = stage0;
|
|
lean-final = self;
|
|
} (args // {
|
|
src = ../src;
|
|
fullSrc = ../.;
|
|
inherit debug;
|
|
leanFlags = [ "-Dinterpreter.prefer_native=false" ];
|
|
});
|
|
in (all: all // all.lean) rec {
|
|
Init = build { name = "Init"; deps = []; };
|
|
Std = build { name = "Std"; deps = [ Init ]; };
|
|
Lean = build { name = "Lean"; deps = [ Init Std ]; linkFlags = ["${stdlibLinkFlags} -rdynamic ${leancpp}/lib/lean.cpp.o"]; };
|
|
Leanpkg = build { name = "Leanpkg"; deps = [ Init Std Lean ]; linkFlags = ["${stdlibLinkFlags} -rdynamic"]; };
|
|
inherit (Lean) emacs-dev emacs-package vscode-dev vscode-package;
|
|
mods = Init.mods // Std.mods // Lean.mods;
|
|
stdlibLinkFlags = "-L${gmp}/lib -L${Init.staticLib} -L${Std.staticLib} -L${Lean.staticLib} -L${leancpp}/lib/lean";
|
|
leanc = writeShellScriptBin "leanc" ''
|
|
LEAN_CXX=${stdenv.cc}/bin/c++ ${lean-bin-tools-unwrapped}/bin/leanc ${stdlibLinkFlags} "$@"
|
|
'';
|
|
lean = Lean.executable;
|
|
leanpkg = Leanpkg.executable;
|
|
# derivation following the directory layout of the "basic" setup, mostly useful for running tests
|
|
lean-all = wrapStage(stdenv.mkDerivation {
|
|
name = "lean-${desc}";
|
|
buildCommand = ''
|
|
mkdir -p $out/bin $out/lib/lean
|
|
ln -sf ${leancpp}/lib/lean/libleancpp.* ${Leanpkg.modRoot}/* ${Lean.staticLib}/* ${Lean.modRoot}/* ${Std.staticLib}/* ${Std.modRoot}/* ${Init.staticLib}/* ${Init.modRoot}/* $out/lib/lean/
|
|
# put everything in a single final derivation so `IO.appDir` references work
|
|
cp ${lean}/bin/lean ${leanpkg}/bin/leanpkg $out/bin
|
|
# NOTE: first `bin/leanc` wins in case of `lndir`
|
|
for i in ${leanc} ${lean-bin-tools-unwrapped}; do
|
|
${lndir}/bin/lndir -silent $i $out
|
|
done
|
|
'';
|
|
});
|
|
test = buildCMake {
|
|
name = "lean-test-${desc}";
|
|
realSrc = lib.sourceByRegex ../. [ "src.*" "tests.*" ];
|
|
preConfigure = ''
|
|
cd src
|
|
'';
|
|
postConfigure = ''
|
|
patchShebangs ../../tests
|
|
rm -r bin lib include share
|
|
ln -sf ${lean-all}/* .
|
|
'';
|
|
buildPhase = ''
|
|
ctest --output-on-failure -E 'leancomptest_(doc_example|foreign)' -j$NIX_BUILD_CORES
|
|
'';
|
|
installPhase = ''
|
|
touch $out
|
|
'';
|
|
};
|
|
update-stage0 =
|
|
let cTree = symlinkJoin { name = "cs"; paths = [ Init.cTree Std.cTree Lean.cTree Leanpkg.cTree ]; }; in
|
|
writeShellScriptBin "update-stage0" ''
|
|
CSRCS=${cTree} CP_PARAMS="--dereference --no-preserve=all" ${../script/update-stage0}
|
|
'';
|
|
update-stage0-commit = writeShellScriptBin "update-stage0-commit" ''
|
|
set -euo pipefail
|
|
${update-stage0}/bin/update-stage0
|
|
git commit -m "chore: update stage0"
|
|
'';
|
|
benchmarks =
|
|
let
|
|
entries = attrNames (readDir ../tests/bench);
|
|
leanFiles = map (n: elemAt n 0) (filter (n: n != null) (map (match "(.*)\.lean") entries));
|
|
in lib.genAttrs leanFiles (n: (buildLeanPackage {
|
|
name = n;
|
|
src = filterSource (e: _: baseNameOf e == "${n}.lean") ../tests/bench;
|
|
}).executable);
|
|
};
|
|
stage1 = stage { stage = 1; prevStage = stage0; self = stage1; };
|
|
stage2 = stage { stage = 2; prevStage = stage1; self = stage2; };
|
|
stage3 = stage { stage = 3; prevStage = stage2; self = stage3; };
|
|
}
|