Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NStrictDupMsgs (0.13 sec)

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

    					hostArchive(ctxt, p)
    				}
    			}
    		}
    	}
    
    	// We've loaded all the code now.
    	ctxt.Loaded = true
    
    	strictDupMsgCount = ctxt.loader.NStrictDupMsgs()
    }
    
    // loadWindowsHostArchives loads in host archives and objects when
    // doing internal linking on windows. Older toolchains seem to require
    // just a single pass through the various archives, but some modern
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loader/loader.go

    		strings.HasPrefix(name, "go:info.go.builtin") ||
    		strings.HasPrefix(name, "go:debuglines")
    	if !allowed {
    		l.strictDupMsgs++
    	}
    }
    
    func (l *Loader) NStrictDupMsgs() int { return l.strictDupMsgs }
    
    // Number of total symbols.
    func (l *Loader) NSym() int {
    	return len(l.objSyms)
    }
    
    // Number of defined Go symbols.
    func (l *Loader) NDef() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top