Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for targetPlatform (0.31 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalBuildIntegrationTest.groovy

                }
                platform_x64 {
                    architecture 'x86-64'
                }
            }
            components {
                main {
                    targetPlatform 'platform_x86'
                }
                hello {
                    targetPlatform 'platform_x86'
                }
            }
        }
    """
            run "mainExecutable"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/swift_application_plugin.adoc

    link:{groovyDslPath}/org.gradle.language.swift.tasks.SwiftCompile.html#org.gradle.language.swift.tasks.SwiftCompile:targetPlatform[targetPlatform]:: derived from the `TargetMachine` of the binary
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/cpp_unit_test_plugin.adoc

    link:{groovyDslPath}/org.gradle.language.cpp.tasks.CppCompile.html#org.gradle.language.cpp.tasks.CppCompile:targetPlatform[targetPlatform]:: derived from the `TargetMachine` of the binary
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationPublishingIntegrationTest.groovy

                // HACK to install the executable from a repository
                def binary = application.developmentBinary
                task install(type: InstallExecutable) {
                    targetPlatform.set(binary.map { it.compileTask.get().targetPlatform.get() })
                    toolChain.set(binary.map { it.toolChain })
                    installDirectory = layout.projectDirectory.dir("install")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    link:{groovyDslPath}/org.gradle.language.cpp.tasks.CppCompile.html#org.gradle.language.cpp.tasks.CppCompile:targetPlatform[targetPlatform]:: derived from the `TargetMachine` of the binary
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

                DefaultNativePlatform targetPlatform = new DefaultNativePlatform("default");
                installDir = install.getVisualStudioDir();
                version = install.getVersion();
                org.gradle.nativeplatform.toolchain.internal.msvcpp.VisualCpp visualCpp = install.getVisualCpp().forPlatform(targetPlatform);
                cppCompiler = visualCpp.getCompilerExecutable();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtSymbolByFirBuilder.kt

        fun createPackageSymbolIfOneExists(packageFqName: FqName): KaFirPackageSymbol? {
            val exists = packageProvider.doesPackageExist(packageFqName, analysisSession.targetPlatform)
            if (!exists) {
                return null
            }
            return createPackageSymbol(packageFqName)
        }
    
        fun createPackageSymbol(packageFqName: FqName): KaFirPackageSymbol {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativePlatformSamplesIntegrationTest.groovy

            run "installMainArmExecutable", "installMainSparcExecutable"
    
            then:
            executable(targetPlatforms.dir.file("build/exe/main/arm/main")).exec().out == "Hello from ${toolChain.typeDisplayName}!\n"
            executable(targetPlatforms.dir.file("build/exe/main/arm/main")).arch.isI386()
    
            executable(targetPlatforms.dir.file("build/exe/main/sparc/main")).exec().out == "Hello from ${toolChain.typeDisplayName}!\n"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
Back to top