Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ldShared (0.08 sec)

  1. src/cmd/go/internal/work/gccgo.go

    	return tools.link(b, root, targetPath, importcfg, root.Deps, ldBuildmode, root.Package.ImportPath)
    }
    
    func (tools gccgoToolchain) ldShared(b *Builder, root *Action, toplevelactions []*Action, targetPath, importcfg string, allactions []*Action) error {
    	return tools.link(b, root, targetPath, importcfg, allactions, "shared", targetPath)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/gc.go

    	}
    	return b.Shell(root).run(dir, root.Package.ImportPath, env, cfg.BuildToolexec, base.Tool("link"), "-o", targetPath, "-importcfg", importcfg, ldflags, mainpkg)
    }
    
    func (gcToolchain) ldShared(b *Builder, root *Action, toplevelactions []*Action, targetPath, importcfg string, allactions []*Action) error {
    	ldflags := []string{"-installsuffix", cfg.BuildContext.InstallSuffix}
    	ldflags = append(ldflags, "-buildmode=shared")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	// ld runs the linker to create an executable starting at mainpkg.
    	ld(b *Builder, root *Action, targetPath, importcfg, mainpkg string) error
    	// ldShared runs the linker to create a shared library containing the pkgs built by toplevelactions
    	ldShared(b *Builder, root *Action, toplevelactions []*Action, targetPath, importcfg string, allactions []*Action) error
    
    	compiler() string
    	linker() string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top