Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Exitf (0.03 sec)

  1. src/cmd/link/internal/loong64/obj.go

    			Reloc1:    elfreloc1,
    			RelocSize: 24,
    			SetupPLT:  elfsetupplt,
    		},
    	}
    
    	return arch, theArch
    }
    
    func archinit(ctxt *ld.Link) {
    	switch ctxt.HeadType {
    	default:
    		ld.Exitf("unknown -H option: %v", ctxt.HeadType)
    	case objabi.Hlinux: /* loong64 elf */
    		ld.Elfinit(ctxt)
    		ld.HEADR = ld.ELFRESERVE
    		if *ld.FlagRound == -1 {
    			*ld.FlagRound = 0x10000
    		}
    		if *ld.FlagTextAddr == -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 13:49:14 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    	strnames []string
    )
    
    func addstrdata1(ctxt *Link, arg string) {
    	eq := strings.Index(arg, "=")
    	dot := strings.LastIndex(arg[:eq+1], ".")
    	if eq < 0 || dot < 0 {
    		Exitf("-X flag requires argument of the form importpath.name=value")
    	}
    	pkg := arg[:dot]
    	if ctxt.BuildMode == BuildModePlugin && pkg == "main" {
    		pkg = *flagPluginPath
    	}
    	pkg = objabi.PathToPrefix(pkg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top