Home | History | Annotate | Download | only in cc

Lines Matching refs:linker

113 	LdFlags         []string // Flags that apply to linker command lines
227 type linker interface {
275 // the blueprint.Module interface. It delegates to compiler, linker, and installer interfaces
291 linker linker
316 if c.linker != nil {
317 c.AddProperties(c.linker.linkerProps()...)
351 if root, ok := c.linker.(interface {
405 if static, ok := ctx.mod.linker.(interface {
414 if static, ok := ctx.mod.linker.(interface {
496 if p, ok := c.linker.(prebuiltLinkerInterface); ok {
504 if p, ok := c.linker.(interface {
528 if c.linker != nil {
529 flags = c.linker.linkerFlags(ctx, flags)
578 if c.linker != nil {
579 outputFile := c.linker.link(ctx, flags, deps, objs)
605 if c.linker != nil {
606 c.linker.linkerInit(ctx)
641 if c.linker != nil {
642 deps = c.linker.linkerDeps(ctx, deps)
872 if _, ok := to.linker.(*toolchainLibraryDecorator); ok {
876 if _, ok := to.linker.(*ndkPrebuiltLibraryLinker); ok {
880 if _, ok := to.linker.(*ndkPrebuiltStlLinker); ok {
884 if _, ok := to.linker.(*stubDecorator); ok {
1004 if i, ok := cc.linker.(exportedFlagsProducer); ok {
1035 depFile = cc.linker.(libraryInterface).toc()
1039 depFile = cc.linker.(libraryInterface).toc()
1046 staticLib, ok := cc.linker.(libraryInterface)
1072 staticLib, ok := cc.linker.(libraryInterface)
1244 } else if _, ok := m.linker.(*llndkStubDecorator); ok {