Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for toolChainFor (0.42 sec)

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

        }
    
        private static void assignToolsToNativeBinary(NativeBinarySpecInternal nativeBinary, NativeBinarySpec nativeBinarySpec, NativeToolChainRegistryInternal toolChains) {
            NativeToolChainInternal toolChain = toolChainFor(nativeBinarySpec, toolChains);
            PlatformToolProvider toolProvider = toolChain.select((NativePlatformInternal) nativeBinarySpec.getTargetPlatform());
            nativeBinary.setToolChain(toolChain);
    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/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/AbstractXcodeCppProjectIntegrationTest.groovy

        }
    
        protected String configureToolChainSupport(String architecture) {
            return """
                model {
                    toolChains {
                        toolChainFor${architecture.capitalize()}Architecture(Gcc) {
                            path "/not/found"
                            target("host:${architecture}")
                        }
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/cpp/AbstractCppComponentIntegrationTest.groovy

        protected abstract String getComponentName()
    
        protected String configureToolChainSupport(String architecture) {
            return """
                model {
                    toolChains {
                        toolChainFor${architecture.capitalize()}Architecture(Gcc) {
                            path "/not/found"
                            target("host:${architecture}")
                        }
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/AbstractVisualStudioProjectIntegrationTest.groovy

                return osFamily
            }
        }
    
        protected String configureToolChainSupport(String architecture) {
            return """
                model {
                    toolChains {
                        toolChainFor${architecture.capitalize()}Architecture(Gcc) {
                            path "/not/found"
                            target("host:${architecture}")
                        }
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 14.7K bytes
    - Viewed (0)
Back to top