A Lean library -- its package plus its configuration.
The Lean libraries of the package (as an Array).
Equations
Try to find a Lean library in the package with the given name.
Equations
- Lake.Package.findLeanLib? name self = Lake.Package.findConfigTarget? Lake.LeanLib.configKind name self
The library's user-defined configuration.
The library's root directory for lean
(i.e., srcDir
).
Whether the given module is considered local to the library.
Equations
- Lake.LeanLib.isLocalModule mod self = Lake.LeanLibConfig.isLocalModule mod self.config
Whether the given module is a buildable part of the library.
Equations
- Lake.LeanLib.isBuildableModule mod self = Lake.LeanLibConfig.isBuildableModule mod self.config
The file name of the library's static binary (i.e., its .a
)
Equations
- self.staticLibFileName = { toString := Lake.nameToStaticLib self.config.libName }
The path to the static library in the package's libDir
.
Equations
- self.staticLibFile = self.pkg.staticLibDir / self.staticLibFileName
The path to the static library (with exported symbols) in the package's libDir
.
Equations
- self.staticExportLibFile = self.pkg.staticLibDir / self.staticLibFileName.addExtension "export"
The library's extraDepTargets
configuration.
Equations
- self.extraDepTargets = self.config.extraDepTargets
Whether to precompile the library's modules.
Is true if either the package or the library have precompileModules
set.
Equations
- self.precompileModules = (self.pkg.precompileModules || self.config.precompileModules)
Whether to the library's Lean code is platform-independent.
Returns the library's platformIndependent
configuration if non-none
.
Otherwise, falls back to the package's.
Equations
- self.platformIndependent = (self.config.platformIndependent <|> self.pkg.platformIndependent)
The library's defaultFacets
configuration.
Equations
- self.defaultFacets = self.config.defaultFacets
The library's nativeFacets
configuration.
Equations
- self.nativeFacets shouldExport = self.config.nativeFacets shouldExport
The arguments to pass to lean --server
when running the Lean language server.
serverOptions
is the accumulation of:
- the build type's
leanOptions
- the package's
leanOptions
- the package's
moreServerOptions
- the library's
leanOptions
- the library's
moreServerOptions
Equations
- self.serverOptions = self.buildType.leanOptions ++ self.pkg.moreServerOptions ++ self.config.leanOptions ++ self.config.moreServerOptions
The arguments to pass to lean
when compiling the library's Lean files.
leanArgs
is the accumulation of:
- the build type's
leanArgs
- the package's
leanOptions
- the package's
moreLeanArgs
- the library's
leanOptions
- the library's
moreLeanArgs
Equations
- self.leanArgs = self.buildType.leanArgs ++ self.pkg.moreLeanArgs ++ Array.map (fun (x : Lake.LeanOption) => x.asCliArg) self.config.leanOptions ++ self.config.moreLeanArgs
The arguments to weakly pass to lean
when compiling the library's Lean files.
That is, the package's weakLeanArgs
plus the library's weakLeanArgs
.
Equations
- self.weakLeanArgs = self.pkg.weakLeanArgs ++ self.config.weakLeanArgs
The arguments to pass to leanc
when compiling the library's Lean-produced C files.
That is, the build type's leancArgs
, the package's moreLeancArgs
,
and then the library's moreLeancArgs
.
Equations
- self.leancArgs = self.buildType.leancArgs ++ self.pkg.moreLeancArgs ++ self.config.moreLeancArgs
The arguments to weakly pass to leanc
when compiling the library's Lean-produced C files.
That is, the package's weakLeancArgs
plus the library's weakLeancArgs
.
Equations
- self.weakLeancArgs = self.pkg.weakLeancArgs ++ self.config.weakLeancArgs
Additionl target objects to pass to ar
when linking the static library.
That is, the package's moreLinkObjs
plus the library's moreLinkObjs
.
Equations
- self.moreLinkObjs = self.pkg.moreLinkObjs ++ self.config.moreLinkObjs
Equations
- self.moreLinkLibs = self.pkg.moreLinkLibs ++ self.config.moreLinkLibs
The arguments to pass to leanc
when linking the shared library.
That is, the package's moreLinkArgs
plus the library's moreLinkArgs
.
Equations
- self.linkArgs = self.pkg.moreLinkArgs ++ self.config.moreLinkArgs
The arguments to weakly pass to leanc
when linking the shared library.
That is, the package's weakLinkArgs
plus the library's weakLinkArgs
.
Equations
- self.weakLinkArgs = self.pkg.weakLinkArgs ++ self.config.weakLinkArgs