Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 202 for toolChain (0.26 sec)

  1. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/GoogleTestIntegrationTest.groovy

                if (targetPlatform.operatingSystem.linux) {
                    cppCompiler.args '-pthread'
                    linker.args '-pthread'
                }
                if ((toolChain instanceof Gcc || toolChain instanceof Clang) && ${!toolChain.displayName.startsWith("gcc cygwin")}) {
                    // Use C++03 with the old ABIs, as this is what the googletest binaries were built with
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  2. src/cmd/dist/buildtool.go

    		// since that implies knowledge of internal details that might
    		// change from one bootstrap toolchain to the next.
    		// There are many internal packages that are listed in
    		// bootstrapDirs and made into bootstrap copies based on the
    		// current repo's source code. Those are fine; this is catching
    		// references to internal packages in the older bootstrap toolchain.
    		if strings.HasPrefix(path, "internal/") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/api/plugins/JavaPluginTest.groovy

            then:
            task.taskDependencies.getDependencies(task)*.path as Set == [':middle:build', ':app:buildDependents'] as Set
        }
    
        def "wires toolchain for sourceset if toolchain is configured"() {
            given:
            def someJdk = Jvm.current()
            setupProjectWithToolchain(someJdk.javaVersion)
    
            when:
            project.sourceSets.create('custom')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modcmd/edit.go

    This flag is mainly for tools that understand Go version dependencies.
    Users should prefer 'go get go@version'.
    
    The -toolchain=version flag sets the Go toolchain to use.
    This flag is mainly for tools that understand Go version dependencies.
    Users should prefer 'go get toolchain@version'.
    
    The -exclude=path@version and -dropexclude=path@version flags
    add and drop an exclusion for the given module path and version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/workcmd/edit.go

    The -toolchain=name flag sets the Go toolchain to use.
    
    The -print flag prints the final go.work in its text format instead of
    writing it back to go.mod.
    
    The -json flag prints the final go.work file in JSON format instead of
    writing it back to go.mod. The JSON output corresponds to these Go types:
    
    	type GoWork struct {
    		Go        string
    		Toolchain string
    		Godebug   []Godebug
    		Use       []Use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/LegacyWindowsSdkLocator.java

     */
    package org.gradle.nativeplatform.toolchain.internal.msvcpp;
    
    import com.google.common.collect.Lists;
    import net.rubygrapefruit.platform.MissingRegistryEntryException;
    import net.rubygrapefruit.platform.WindowsRegistry;
    import org.apache.commons.lang.StringUtils;
    import org.gradle.internal.FileUtils;
    import org.gradle.internal.os.OperatingSystem;
    import org.gradle.platform.base.internal.toolchain.ComponentFound;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProvider.java

    import org.gradle.nativeplatform.platform.internal.DefaultNativePlatform;
    import org.gradle.nativeplatform.toolchain.internal.SystemLibraries;
    import org.gradle.nativeplatform.toolchain.internal.metadata.AbstractMetadataProvider;
    import org.gradle.nativeplatform.toolchain.internal.metadata.CompilerType;
    import org.gradle.process.internal.ExecAction;
    import org.gradle.process.internal.ExecActionFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 06:39:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/ShowToolchainsTaskTest.groovy

        ToolchainConfiguration toolchainConfiguration = Stub(ToolchainConfiguration)
    
        def defineJdks(JvmToolchainMetadata... toolchains) {
            def javaInstallationRegistry = Mock(JavaInstallationRegistry)
            javaInstallationRegistry.toolchains() >> toolchains
    
            def styledTextOutputFactory = Mock(StyledTextOutputFactory)
            styledTextOutputFactory.create(_) >> outputProbe
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/swift/AbstractSwiftComponentIntegrationTest.groovy

        }
    
        def "binaries have the right Swift version"() {
            given:
            makeSingleProject()
            def expectedVersion = AbstractNativeLanguageComponentIntegrationTest.toolChain.version.major
            buildFile << """
                task verifyBinariesSwiftVersion {
                    doLast {
                        ${componentUnderTestDsl}.binaries.get().each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalBuildIntegrationTest.groovy

            given:
            run "mainExecutable"
    
            when:
            def executable = executable("build/exe/main/main")
            def snapshot = executable.snapshot()
    
            and:
            def linkerArgs = toolChain.isVisualCpp() ? "'/DEBUG'" : OperatingSystem.current().isMacOsX() ? "'-Xlinker', '-no_pie'" : "'-Xlinker', '-q'"
            linkerArgs = escapeString(linkerArgs)
            buildFile << """
            model {
                components {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.3K bytes
    - Viewed (0)
Back to top