Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IsDWARFEnabledOnAIXLd (0.17 sec)

  1. src/cmd/internal/dwarf/dwarf.go

    func (s byChildIndex) Swap(i, j int)      { s[i], s[j] = s[j], s[i] }
    
    // IsDWARFEnabledOnAIXLd returns true if DWARF is possible on the
    // current extld.
    // AIX ld doesn't support DWARF with -bnoobjreorder with version
    // prior to 7.2.2.
    func IsDWARFEnabledOnAIXLd(extld []string) (bool, error) {
    	name, args := extld[0], extld[1:]
    	args = append(args, "-Wl,-V")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    		switch {
    		case ctxt.IsELF:
    		case ctxt.HeadType == objabi.Hdarwin:
    		case ctxt.HeadType == objabi.Hwindows:
    		case ctxt.HeadType == objabi.Haix:
    			res, err := dwarf.IsDWARFEnabledOnAIXLd(ctxt.extld())
    			if err != nil {
    				Exitf("%v", err)
    			}
    			return res
    		default:
    			return false
    		}
    	}
    
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top