Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LinkerOptionsFixture (0.51 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/LinkerOptionsFixture.groovy

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures
    
    import org.gradle.test.fixtures.file.TestFile
    
    class LinkerOptionsFixture {
        final TestFile options
    
        LinkerOptionsFixture(TestFile options) {
            this.options = options
        }
    
        List<TestFile> linkedObjects() {
            List<TestFile> objectFiles = []
            options.text.eachLine { line ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AbstractInstalledToolChainIntegrationSpec.groovy

            return suffix.empty ? "" : suffix.substring(1)
        }
    
        ExecutableFixture executable(Object path) {
            return toolChain.executable(file(path))
        }
    
        LinkerOptionsFixture linkerOptionsFor(String taskName, TestFile projectDir = testDirectory) {
            return toolChain.linkerOptionsFor(projectDir.file("build/tmp/$taskName/options.txt"))
        }
    
        TestFile objectFile(Object path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

                return new ExecutableFixture(new TestFile(OperatingSystem.current().getExecutableName(path.toString())), this);
            }
    
            public LinkerOptionsFixture linkerOptionsFor(Object path) {
                return new LinkerOptionsFixture(new TestFile(path.toString()));
            }
    
            public TestFile objectFile(Object path) {
                return new TestFile(path.toString() + objectFileNameSuffix);
    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