Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for platformSpecificToolChainConfiguration (0.26 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/NativeToolChainDiscoveryIntegrationTest.groovy

                // we need to reapply the 32-bit platform config for cygwin64 and mingw64
                ${toolChain.platformSpecificToolChainConfiguration()}
            }
        }
        components {
            main(NativeExecutableSpec)
        }
    }
            """
    
            and:
            helloWorldApp.writeSources(file("src/main"))
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

                // Implement this if you need to specify individual toolchains via "org.gradle.integtest.versions"
                throw new UnsupportedOperationException();
            }
    
            public String platformSpecificToolChainConfiguration() {
                return "";
            }
    
            public void configureExecuter(GradleExecuter executer) {
                // Toolchains should be using default configuration
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 41.6K bytes
    - Viewed (0)
Back to top