Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MustLinkExternal (0.41 sec)

  1. src/cmd/go/scriptconds_test.go

    	GOOS, _ := s.LookupEnv("GOOS")
    	GOARCH, _ := s.LookupEnv("GOARCH")
    	return platform.MustLinkExternal(GOOS, GOARCH, true), nil
    }
    
    func mustLinkExt(s *script.State) (bool, error) {
    	GOOS, _ := s.LookupEnv("GOOS")
    	GOARCH, _ := s.LookupEnv("GOARCH")
    	return platform.MustLinkExternal(GOOS, GOARCH, false), nil
    }
    
    func pieLinkExt(s *script.State) (bool, error) {
    	GOOS, _ := s.LookupEnv("GOOS")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. src/internal/platform/supported.go

    	case "amd64", "arm64":
    		// TODO(#14565): support more architectures.
    		return FuzzSupported(goos, goarch)
    	default:
    		return false
    	}
    }
    
    // MustLinkExternal reports whether goos/goarch requires external linking
    // with or without cgo dependencies.
    func MustLinkExternal(goos, goarch string, withCgo bool) bool {
    	if withCgo {
    		switch goarch {
    		case "loong64", "mips", "mipsle", "mips64", "mips64le":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:50:22 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top