Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for cppCompile (0.21 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

        `org.gradle.language.scala.tasks.PlatformScalaCompile` (removed),
        link:{groovyDslPath}/org.gradle.api.tasks.scala.ScalaDoc.html[ScalaDoc]
    * Native toolchain:
        link:{javadocPath}/org/gradle/language/cpp/tasks/CppCompile.html[CppCompile],
        link:{javadocPath}/org/gradle/language/c/tasks/CCompile.html[CCompile],
        link:{javadocPath}/org/gradle/language/swift/tasks/SwiftCompile.html[SwiftCompile]
    * Testing:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/dsl.xml

            <para>Tasks used to build native binaries.</para>
            <table>
                <title>Native component task types</title>
                <tr>
                    <td>org.gradle.language.cpp.tasks.CppCompile</td>
                </tr>
                <tr>
                    <td>org.gradle.language.swift.tasks.SwiftCompile</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    Passing additional compiler arguments now follow the same pattern as the `CppCompile` and other tasks.
    
    ==== Copied configuration no longer shares a list of `beforeResolve` actions with original
    
    The list of `beforeResolve` actions are no longer shared between a copied configuration and the original.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-monolithic/common.gradle

                cCompiler.define "SOMETHING7=0"
    
                cppCompiler.define "SOMETHING1=0"
                cppCompiler.define "SOMETHING2=0"
                cppCompiler.define "SOMETHING3=0"
                cppCompiler.define "SOMETHING4=0"
                cppCompiler.define "SOMETHING5=0"
                cppCompiler.define "SOMETHING6=0"
                cppCompiler.define "SOMETHING7=0"
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents/build.gradle

                if (targetPlatform.operatingSystem.linux) {
                    cppCompiler.args '-pthread'
                    linker.args '-pthread'
                }
            }
            all {
                if (toolChain instanceof Gcc) {
                    cppCompiler.args '-std=c++03', '-D_GLIBCXX_USE_CXX11_ABI=0'
                    linker.args '-std=c++03'
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r52/CppModelCrossVersionSpec.groovy

            debugX86Binary.compilationDetails.macroUndefines.empty
            debugX86Binary.compilationDetails.additionalArgs.empty
            debugX86Binary.compilationDetails.compilerExecutable.name == toolchain.cppCompiler.name
            debugX86Binary.compilationDetails.compileWorkingDir == projectDir.file("build/obj/main/debug/x86")
            debugX86Binary.compilationDetails.compileTask.path == ":compileDebugX86Cpp"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/RealWorldNativePluginPerformanceTest.groovy

            file.text = originalContent.
                replaceFirst(~/cCompiler.define "SOMETHING7=0"/, 'cCompiler.define "SOMETHING_NEW=0"').
                replaceFirst(~/cppCompiler.define "SOMETHING7=0"/, 'cppCompiler.define "SOMETHING_NEW=0"')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r410/CppModelCrossVersionSpec.groovy

            debugBinary.compilationDetails.macroUndefines.empty
            debugBinary.compilationDetails.additionalArgs.empty
            debugBinary.compilationDetails.compilerExecutable == toolchain.cppCompiler
            debugBinary.compilationDetails.compileWorkingDir == projectDir.file("build/obj/main/debug")
            debugBinary.compilationDetails.compileTask.path == ":compileDebugCpp"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.nativeplatform.toolchain.internal.gcc.CppCompiler$CppCompileArgsTransformer> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (CppCompiler.java:0)
    Class <org.gradle.nativeplatform.toolchain.internal.gcc.CppCompiler> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (CppCompiler.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top