Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for loadGlob (0.29 sec)

  1. src/cmd/link/internal/ld/main.go

    		addlibpath(ctxt, "command line", "command line", flag.Arg(0), *flagPluginPath, "", zerofp)
    	default:
    		addlibpath(ctxt, "command line", "command line", flag.Arg(0), "main", "", zerofp)
    	}
    	bench.Start("loadlib")
    	ctxt.loadlib()
    
    	bench.Start("inittasks")
    	ctxt.inittasks()
    
    	bench.Start("deadcode")
    	deadcode(ctxt)
    
    	bench.Start("linksetup")
    	ctxt.linksetup()
    
    	bench.Start("dostrdata")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/lib.go

    // It returns library full path if found, or "none" if not found.
    func (ctxt *Link) findLibPath(libname string) string {
    	return ctxt.findLibPathCmd("--print-file-name="+libname, libname)
    }
    
    func (ctxt *Link) loadlib() {
    	var flags uint32
    	if *flagCheckLinkname {
    		flags |= loader.FlagCheckLinkname
    	}
    	switch *FlagStrictDups {
    	case 0:
    		// nothing to do
    	case 1, 2:
    		flags |= loader.FlagStrictDups
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/loader.go

    	return l.relocVariant[relocId{s, ri}]
    }
    
    // UndefinedRelocTargets iterates through the global symbol index
    // space, looking for symbols with relocations targeting undefined
    // references. The linker's loadlib method uses this to determine if
    // there are unresolved references to functions in system libraries
    // (for example, libgcc.a), presumably due to CGO code. Return value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top