Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for dwarfaddshstrings (0.19 sec)

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

    		shstrtabAddstring(".init_array")
    		shstrtabAddstring(elfRelType + ".init_array")
    	}
    
    	if !*FlagS {
    		shstrtabAddstring(".symtab")
    		shstrtabAddstring(".strtab")
    	}
    	if !*FlagW {
    		dwarfaddshstrings(ctxt, shstrtabAddstring)
    	}
    
    	shstrtabAddstring(".shstrtab")
    
    	if !*FlagD { /* -d suppresses dynamic loader format */
    		shstrtabAddstring(".interp")
    		shstrtabAddstring(".hash")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    				break
    			}
    		}
    	}
    	return syms
    }
    
    // Add DWARF section names to the section header string table, by calling add
    // on each name. ELF only.
    func dwarfaddshstrings(ctxt *Link, add func(string)) {
    	if *FlagW { // disable dwarf
    		return
    	}
    
    	secs := []string{"abbrev", "frame", "info", "loc", "line", "gdb_scripts", "ranges"}
    	for _, sec := range secs {
    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