Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for setToolChain (0.2 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/configure/NativeBinaryRules.java

            NativeToolChainInternal toolChain = toolChainFor(nativeBinarySpec, toolChains);
            PlatformToolProvider toolProvider = toolChain.select((NativePlatformInternal) nativeBinarySpec.getTargetPlatform());
            nativeBinary.setToolChain(toolChain);
            nativeBinary.setPlatformToolProvider(toolProvider);
        }
    
        private static void assignToolsToNativeBinaryExtension(NativeBinarySpecInternal nativeBinary, File buildDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/internal/NativeTestSuites.java

                    testBinary.setResolver(resolver);
                    testBinary.setToolChain(testedBinary.getToolChain());
                    NativeExecutableFileSpec executable = testBinary.getExecutable();
                    NativeInstallationSpec installation = testBinary.getInstallation();
                    executable.setToolChain(testedBinary.getToolChain());
                    executable.setFile(executableFileFor(testBinary, buildDir));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeExecutableFileSpec.java

         */
        public NativeToolChain getToolChain() {
            return toolChain;
        }
    
        /**
         * Sets the Tool Chain that produces the native executable.
         * @since 4.7
         */
        public void setToolChain(NativeToolChain toolChain) {
            this.toolChain = toolChain;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeBinarySpecInternal.java

    import java.io.File;
    import java.util.Collection;
    import java.util.Map;
    
    public interface NativeBinarySpecInternal extends NativeBinarySpec, BinarySpecInternal {
    
        void setFlavor(Flavor flavor);
    
        void setToolChain(NativeToolChain toolChain);
    
        void setTargetPlatform(NativePlatform targetPlatform);
    
        void setBuildType(BuildType buildType);
    
        Tool getToolByName(String name);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/internal/DefaultNativeTestSuiteBinarySpec.java

        }
    
        @Override
        public void setTestedBinary(NativeBinarySpecInternal testedBinary) {
            this.testedBinary = testedBinary;
            setTargetPlatform(testedBinary.getTargetPlatform());
            setToolChain(testedBinary.getToolChain());
            setPlatformToolProvider(testedBinary.getPlatformToolProvider());
            setBuildType(testedBinary.getBuildType());
            setFlavor(testedBinary.getFlavor());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/NativeToolChainTestInterceptor.java

            protected void before(IMethodInvocation invocation) {
                System.out.println(String.format("Using tool chain %s", toolChain.getDisplayName()));
                AbstractInstalledToolChainIntegrationSpec.setToolChain((AvailableToolChains.InstalledToolChain) toolChain);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/AbstractNativeBinarySpec.java

            this.flavor = flavor;
        }
    
        @Override
        public NativeToolChain getToolChain() {
            return toolChain;
        }
    
        @Override
        public void setToolChain(NativeToolChain toolChain) {
            this.toolChain = toolChain;
        }
    
        @Override
        public NativePlatform getTargetPlatform() {
            return targetPlatform;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * `getTargetPlatform()` was changed to return a `Property`.
     * `setTargetPlatform(NativePlatform)` was removed. Use `Property.set()` instead.
     * `getToolChain()` was changed to return a `Property`.
     * `setToolChain(NativeToolChain)` was removed. Use `Property.set()` instead.
    
    link:{groovyDslPath}/org.gradle.nativeplatform.tasks.CreateStaticLibrary.html[CreateStaticLibrary]::
     * `getOutputFile()` was changed to return a `Property`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top