Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MSanSupported (0.34 sec)

  1. src/internal/platform/supported.go

    		return goarch == "amd64" || goarch == "arm64"
    	case "freebsd", "netbsd", "windows":
    		return goarch == "amd64"
    	default:
    		return false
    	}
    }
    
    // MSanSupported reports whether goos/goarch supports the memory
    // sanitizer option.
    func MSanSupported(goos, goarch string) bool {
    	switch goos {
    	case "linux":
    		return goarch == "amd64" || goarch == "arm64" || goarch == "loong64"
    	case "freebsd":
    		return goarch == "amd64"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:50:22 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. src/cmd/go/scriptconds_test.go

    	add("go-builder", script.BoolCondition("GO_BUILDER_NAME is non-empty", testenv.Builder() != ""))
    	add("link", lazyBool("testenv.HasLink()", testenv.HasLink))
    	add("msan", sysCondition("-msan", platform.MSanSupported, true))
    	add("mustlinkext", script.Condition("platform always requires external linking", mustLinkExt))
    	add("net", script.PrefixCondition("can connect to external network host <suffix>", hasNet))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. src/cmd/go/go_test.go

    		if err != nil {
    			fmt.Fprintf(os.Stderr, "could not find testing GOCACHE: %v\n%s", err, out)
    			os.Exit(2)
    		}
    		testGOCACHE = strings.TrimSpace(string(out))
    
    		canMSan = testenv.HasCGO() && platform.MSanSupported(runtime.GOOS, runtime.GOARCH)
    		canASan = testenv.HasCGO() && platform.ASanSupported(runtime.GOOS, runtime.GOARCH)
    		canRace = testenv.HasCGO() && platform.RaceDetectorSupported(runtime.GOOS, runtime.GOARCH)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top