Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for machocodesig (0.34 sec)

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

    func machoCodeSigSym(ctxt *Link, codeSize int64) loader.Sym {
    	ldr := ctxt.loader
    	cs := ldr.CreateSymForUpdate(".machocodesig", 0)
    	if !ctxt.NeedCodeSign() || ctxt.IsExternal() {
    		return cs.Sym()
    	}
    	sz := codesign.Size(codeSize, "a.out")
    	cs.Grow(sz)
    	cs.SetSize(sz)
    	return cs.Sym()
    }
    
    // machoCodeSign code-signs Mach-O file fname with an ad-hoc signature.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/lib.go

    			func(ctxt *Link, exef *os.File, exem *macho.File, outexe string) error {
    				return machoRewriteUuid(ctxt, exef, exem, outexe)
    			})
    	}
    	if ctxt.NeedCodeSign() {
    		err := machoCodeSign(ctxt, *flagOutfile)
    		if err != nil {
    			Exitf("%s: code signing failed: %v", os.Args[0], err)
    		}
    	}
    }
    
    // passLongArgsInResponseFile writes the arguments into a file if they
    // are very long.
    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