Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for machosymorder (0.11 sec)

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

    					switch buildcfg.GOARCH {
    					case "amd64":
    						ldr.SetSymExtname(s, n+"$INODE64")
    					}
    				}
    			}
    		}
    	}
    
    	nsortsym = len(sortsym)
    }
    
    func machosymorder(ctxt *Link) {
    	ldr := ctxt.loader
    
    	// On Mac OS X Mountain Lion, we must sort exported symbols
    	// So we sort them here and pre-allocate dynid for them
    	// See https://golang.org/issue/4029
    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/data.go

    	// dynamic relocations. These will grow the relocation
    	// symbol, which is itself data.
    	//
    	// On darwin, we need the symbol table numbers for dynreloc.
    	if ctxt.HeadType == objabi.Hdarwin {
    		machosymorder(ctxt)
    	}
    	state.dynreloc(ctxt)
    
    	// Move any RO data with relocations to a separate section.
    	state.makeRelroForSharedLib(ctxt)
    
    	// Set alignment for the symbol with the largest known index,
    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