Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for addDwarfSection (0.12 sec)

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

    	}
    	f.sections = append(f.sections, sect)
    	return sect
    }
    
    // addDWARFSection adds DWARF section to the COFF file f.
    // This function is similar to addSection, but DWARF section names are
    // longer than 8 characters, so they need to be stored in the string table.
    func (f *peFile) addDWARFSection(name string, size int) *peSection {
    	if size == 0 {
    		Exitf("DWARF section %q is empty", name)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
Back to top