Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SymVerABICount (1.03 sec)

  1. src/cmd/link/internal/sym/symbol.go

    // license that can be found in the LICENSE file.
    
    package sym
    
    import (
    	"cmd/internal/obj"
    	"internal/buildcfg"
    )
    
    const (
    	SymVerABI0        = 0
    	SymVerABIInternal = 1
    	SymVerABICount    = 2  // Number of internal ABIs
    	SymVerStatic      = 10 // Minimum version used by static (file-local) syms
    )
    
    func ABIToVersion(abi obj.ABI) int {
    	switch abi {
    	case obj.ABI0:
    		return SymVerABI0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 22 13:50:24 UTC 2021
    - 933 bytes
    - Viewed (0)
Back to top