Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GOCOMPILEDEBUG (0.2 sec)

  1. src/cmd/compile/internal/ssa/fmahash_test.go

    	// i.e., all hashes.  This will print all the FMAs; this test is only interested in one of them (that should appear near the end).
    	cmd.Env = append(cmd.Env, "GOCOMPILEDEBUG=fmahash=1/0", "GOOS=linux", "GOARCH=arm64", "HOME="+tmpdir)
    	t.Logf("%v", cmd)
    	t.Logf("%v", cmd.Env)
    	b, e := cmd.CombinedOutput()
    	if e != nil {
    		t.Errorf("build failed: %v\n%s", e, b)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 21:57:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    // needed to reproduce the failure.
    //
    // The go command also checks the GOCOMPILEDEBUG environment variable for flags
    // to pass to the compiler, so the above command is equivalent to:
    //
    //	bisect GOCOMPILEDEBUG=loopvarhash=PATTERN go test
    //
    // Finally, as mentioned earlier, the -compile flag allows shortening this command further:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    		// for debugging the compiler, they are not settable using 'go env -w',
    		// and so here we use os.Getenv, not cfg.Getenv.
    		magic := []string{
    			"GOCLOBBERDEADHASH",
    			"GOSSAFUNC",
    			"GOSSADIR",
    			"GOCOMPILEDEBUG",
    		}
    		for _, env := range magic {
    			if x := os.Getenv(env); x != "" {
    				fmt.Fprintf(h, "magic %s=%s\n", env, x)
    			}
    		}
    
    	case "gccgo":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top