MCPcopy Create free account
hub / github.com/celer-pkg/celer / buildLibraryType

Method buildLibraryType

buildsystems/buildconfig.go:770–783  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

768}
769
770func (b BuildConfig) buildLibraryType() libraryType {
771 var libraryType libraryType
772 if b.BuildShared == nil && b.BuildStatic == nil {
773 libraryType.shared = true
774 } else {
775 if b.BuildShared != nil {
776 libraryType.shared = *b.BuildShared
777 }
778 if b.BuildStatic != nil {
779 libraryType.static = *b.BuildStatic
780 }
781 }
782 return libraryType
783}
784
785// checkSymlink create a symlink in the sysroot.
786func (b BuildConfig) checkSymlink(src, dest string) error {

Callers 5

configureOptionsMethod · 0.80
configureOptionsMethod · 0.80
configureOptionsMethod · 0.80
configureOptionsMethod · 0.80
buildOptionsMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected