Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for packageshlib (1.56 sec)

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

    			// we must also put the full action ID into the binary's action ID hash.
    			if p1.Name == "main" {
    				fmt.Fprintf(h, "packagemain %s\n", a1.buildID)
    			}
    			if p1.Shlib != "" {
    				fmt.Fprintf(h, "packageshlib %s=%s\n", p1.ImportPath, contentID(b.buildID(p1.Shlib)))
    			}
    		}
    	}
    
    	return h.Sum()
    }
    
    // printLinkerConfig prints the linker config into the hash h,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/lib.go

    }
    
    func errorexit() {
    	exitIfErrors()
    	Exit(0)
    }
    
    func loadinternal(ctxt *Link, name string) *sym.Library {
    	zerofp := goobj.FingerprintType{}
    	if ctxt.linkShared && ctxt.PackageShlib != nil {
    		if shlib := ctxt.PackageShlib[name]; shlib != "" {
    			return addlibpath(ctxt, "internal", "internal", "", name, shlib, zerofp)
    		}
    	}
    	if ctxt.PackageFile != nil {
    		if pname := ctxt.PackageFile[name]; pname != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top