A buildable Lean module of a LeanLib
.
Equations
- Lake.instToTextModule = { toText := fun (x : Lake.Module) => x.name.toString }
Equations
- Lake.instToJsonModule = { toJson := fun (x : Lake.Module) => Lean.toJson x.name }
Equations
- Lake.instHashableModule = { hash := fun (m : Lake.Module) => hash m.keyName }
Equations
- Lake.instBEqModule = { beq := fun (m n : Lake.Module) => m.keyName == n.keyName }
@[reducible, inline]
Equations
@[reducible, inline]
Equations
@[inline]
@[reducible, inline]
Equations
- Lake.ModuleMap α = Lean.RBMap Lake.Module α fun (x1 x2 : Lake.Module) => x1.name.quickCmp x2.name
@[inline]
Equations
Locate the named, buildable module in the library (which implies it is local and importable).
Equations
- Lake.LeanLib.findModule? mod self = if Lake.LeanLib.isBuildableModule mod self = true then some { lib := self, name := mod } else none
Locate the named, buildable, importable, local module in the package.
Equations
- Lake.Package.findModule? mod self = Array.findSomeRev? (fun (x : Lake.LeanLib) => Lake.LeanLib.findModule? mod x) self.leanLibs
The library's buildable root modules.
Equations
- self.rootModules = Array.filterMap (fun (mod : Lean.Name) => Lake.LeanLib.findModule? mod self) self.config.roots
@[inline]
@[inline]
Equations
- Lake.Module.filePath dir ext self = Lean.modToFilePath dir self.name ext
@[inline]
Equations
- Lake.Module.srcPath ext self = Lake.Module.filePath self.lib.srcDir ext self
@[inline]
Equations
- self.leanFile = Lake.Module.srcPath "lean" self
@[inline]
Equations
- Lake.Module.leanLibPath ext self = Lake.Module.filePath self.pkg.leanLibDir ext self
@[inline]
Equations
- self.oleanFile = Lake.Module.leanLibPath "olean" self
@[inline]
Equations
- self.ileanFile = Lake.Module.leanLibPath "ilean" self
@[inline]
Equations
- self.traceFile = Lake.Module.leanLibPath "trace" self
@[inline]
Equations
- Lake.Module.irPath ext self = Lake.Module.filePath self.pkg.irDir ext self
@[inline]
Equations
- self.cFile = Lake.Module.irPath "c" self
@[inline]
Equations
- self.coExportFile = Lake.Module.irPath "c.o.export" self
@[inline]
Equations
- self.coNoExportFile = Lake.Module.irPath "c.o.noexport" self
@[inline]
Equations
- self.bcFile = Lake.Module.irPath "bc" self
@[inline]
Equations
- self.bcoFile = Lake.Module.irPath "bc.o" self
Suffix for single module dynlibs (e.g., for precompilation).
Equations
@[inline]
Equations
- self.dynlibName = self.name.mangle ""
@[inline]
Equations
- self.dynlibFile = self.pkg.leanLibDir / { toString := toString "" ++ toString self.dynlibName ++ toString "." ++ toString Lake.sharedLibExt ++ toString "" }
@[inline]
Equations
- self.serverOptions = self.lib.serverOptions
@[inline]
@[inline]
@[inline]
Equations
- self.weakLeanArgs = self.lib.weakLeanArgs
@[inline]
Equations
- self.weakLeancArgs = self.lib.weakLeancArgs
@[inline]
Equations
- self.weakLinkArgs = self.lib.weakLinkArgs
@[inline]
Equations
- self.platformIndependent = self.lib.platformIndependent
@[inline]
Equations
- self.shouldPrecompile = self.lib.precompileModules
@[inline]
Equations
- self.nativeFacets shouldExport = self.lib.nativeFacets shouldExport
Trace Helpers #
Equations
- One or more equations did not get rendered due to their size.
Equations
- Lake.Module.instGetMTime = { getMTime := Lake.Module.getMTime }
Equations
- One or more equations did not get rendered due to their size.
Equations
- Lake.Module.instCheckExists = { checkExists := Lake.Module.checkExists }