Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 203 for gotoolchain (0.13 sec)

  1. src/cmd/go/internal/toolchain/select.go

    		return
    	}
    
    	// Interpret GOTOOLCHAIN to select the Go toolchain to run.
    	gotoolchain := cfg.Getenv("GOTOOLCHAIN")
    	gover.Startup.GOTOOLCHAIN = gotoolchain
    	if gotoolchain == "" {
    		// cfg.Getenv should fall back to $GOROOT/go.env,
    		// so this should not happen, unless a packager
    		// has deleted the GOTOOLCHAIN line from go.env.
    		// It can also happen if GOROOT is missing or broken,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. hack/lib/golang.sh

      if [ "${GOTOOLCHAIN:-auto}" != 'auto' ]; then
        # no-op, just respect GOTOOLCHAIN
        :
      elif [ -n "${FORCE_HOST_GO:-}" ]; then
        # ensure existing host version is used, like before GOTOOLCHAIN existed
        export GOTOOLCHAIN='local'
      else
        # otherwise, we want to ensure the go version matches GO_VERSION
        GOTOOLCHAIN="go${GO_VERSION}"
        export GOTOOLCHAIN
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  3. src/cmd/distpack/pack.go

    //
    // To test that the module downloads are usable with the go command:
    //
    //	./make.bash -distpack
    //	mkdir -p /tmp/goproxy/golang.org/toolchain/
    //	ln -sf $(pwd)/../pkg/distpack /tmp/goproxy/golang.org/toolchain/@v
    //	GOPROXY=file:///tmp/goproxy GOTOOLCHAIN=$(sed 1q ../VERSION) gotip version
    //
    // gotip can be replaced with an older released Go version once there is one.
    // It just can't be the one make.bash built, because it knows it is already that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/envcmd/env.go

    			if env[i].Value != "" {
    				env[i].Changed = true
    			}
    		case "GOCACHE":
    			env[i].Value, env[i].Changed = cache.DefaultDir()
    		case "GOTOOLCHAIN":
    			env[i].Value, env[i].Changed = cfg.EnvOrAndChanged("GOTOOLCHAIN", "")
    		case "GODEBUG":
    			env[i].Changed = env[i].Value != ""
    		}
    	}
    
    	if work.GccgoBin != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. build/common.sh

        --env "KUBE_STATIC_OVERRIDES=' ${KUBE_STATIC_OVERRIDES[*]:-} '"
        --env "FORCE_HOST_GO=${FORCE_HOST_GO:-}"
        --env "GO_VERSION=${GO_VERSION:-}"
        --env "GOTOOLCHAIN=${GOTOOLCHAIN:-}"
        --env "GOFLAGS=${GOFLAGS:-}"
        --env "GOGCFLAGS=${GOGCFLAGS:-}"
        --env "SOURCE_DATE_EPOCH=${SOURCE_DATE_EPOCH:-}"
      )
    
      # use GOLDFLAGS only if it is set explicitly.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  6. src/cmd/go/script_test.go

    		"GOSUMDB=" + testSumDBVerifierKey,
    		"GONOPROXY=",
    		"GONOSUMDB=",
    		"GOVCS=*:all",
    		"devnull=" + os.DevNull,
    		"goversion=" + gover.Local(),
    		"CMDGO_TEST_RUN_MAIN=true",
    		"HGRCPATH=",
    		"GOTOOLCHAIN=auto",
    		"newline=\n",
    	}
    
    	if testenv.Builder() != "" || os.Getenv("GIT_TRACE_CURL") == "1" {
    		// To help diagnose https://go.dev/issue/52545,
    		// enable tracing for Git HTTPS requests.
    		env = append(env,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/help/helpdoc.go

    	GOROOT
    		The root of the go tree.
    	GOSUMDB
    		The name of checksum database to use and optionally its public key and
    		URL. See https://golang.org/ref/mod#authenticating.
    	GOTOOLCHAIN
    		Controls which Go toolchain is used. See https://go.dev/doc/toolchain.
    	GOTMPDIR
    		The directory where the go command will write
    		temporary source files, packages, and binaries.
    	GOVCS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChain.java

                    }
                };
                gccToolChain.getCppCompiler().withArguments(m64args);
                gccToolChain.getcCompiler().withArguments(m64args);
                gccToolChain.getObjcCompiler().withArguments(m64args);
                gccToolChain.getObjcppCompiler().withArguments(m64args);
                gccToolChain.getLinker().withArguments(m64args);
                gccToolChain.getAssembler().withArguments(m64args);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 20K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/compile/JavaCompile.java

    import org.gradle.internal.operations.BuildOperationRunner;
    import org.gradle.jvm.toolchain.JavaCompiler;
    import org.gradle.jvm.toolchain.JavaInstallationMetadata;
    import org.gradle.jvm.toolchain.JavaToolchainService;
    import org.gradle.jvm.toolchain.internal.DefaultToolchainJavaCompiler;
    import org.gradle.jvm.toolchain.internal.JavaExecutableUtils;
    import org.gradle.language.base.internal.compile.CompileSpec;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:33:35 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/plugins/NativeBasePlugin.java

                stripSymbols.getTargetPlatform().set(currentPlatform);
                stripSymbols.getToolChain().set(toolChain);
            });
        }
    
        private TaskProvider<ExtractSymbols> extractSymbols(final TaskProvider<? extends AbstractLinkTask> link, Names names, TaskContainer tasks, final NativeToolChain toolChain, final NativePlatform currentPlatform, final Provider<RegularFile> symbolLocation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 26.1K bytes
    - Viewed (0)
Back to top