Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DSYMUTIL (0.11 sec)

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

    	if _, err := r.f.Seek(r.offset+offset, 0); err != nil {
    		return err
    	}
    	return binary.Write(r.f, r.order, data)
    }
    
    // machoCombineDwarf merges dwarf info generated by dsymutil into a macho executable.
    //
    // With internal linking, DWARF is embedded into the executable, this lets us do the
    // same for external linking.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/cmd/internal/dwarf/dwarf.go

    	sym, base := s.Ranges, s.StartPC
    
    	if s.UseBASEntries {
    		// Using a Base Address Selection Entry reduces the number of relocations, but
    		// this is not done on macOS because it is not supported by dsymutil/dwarfdump/lldb
    		ctxt.AddInt(sym, ps, -1)
    		ctxt.AddAddress(sym, base, 0)
    		PutBasedRanges(ctxt, sym, ranges)
    		return
    	}
    
    	// Write ranges full of relocations
    	for _, r := range ranges {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf_test.go

    func TestRuntimeTypeAttrExternal(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    	testenv.MustHaveCGO(t)
    
    	mustHaveDWARF(t)
    
    	// Explicitly test external linking, for dsymutil compatibility on Darwin.
    	if runtime.GOARCH == "ppc64" {
    		t.Skip("-linkmode=external not supported on ppc64")
    	}
    
    	testRuntimeTypeAttr(t, "-ldflags=-linkmode=external")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
Back to top