Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,894 for ccCompiler (0.12 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/PropertyAccessorTypeTest.groovy

            bean.url == 'lower-case' && bean.getUrl() == bean.url
            bean.URL == 'upper-case' && bean.getURL() == bean.URL
            bean.cCompiler == 'lower-case first char' && bean.getcCompiler() == bean.cCompiler
            bean.CCompiler == 'upper-case first char' && bean.getCCompiler() == bean.CCompiler
            bean.cppCompiler == 'cppCompiler' && bean.getCppCompiler() == bean.cppCompiler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/CCompiler.java

    import org.gradle.nativeplatform.toolchain.internal.compilespec.CCompileSpec;
    
    import java.util.Optional;
    
    class CCompiler extends VisualCppNativeCompiler<CCompileSpec> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/CCompiler.java

    import org.gradle.nativeplatform.toolchain.internal.CommandLineToolInvocationWorker;
    import org.gradle.nativeplatform.toolchain.internal.compilespec.CCompileSpec;
    
    class CCompiler extends GccCompatibleNativeCompiler<CCompileSpec> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. src/runtime/compiler.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    // Compiler is the name of the compiler toolchain that built the
    // running binary. Known toolchains are:
    //
    //	gc      Also known as cmd/compile.
    //	gccgo   The gccgo front end, part of the GCC compiler suite.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 410 bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/c/tasks/CCompile.java

    import org.gradle.nativeplatform.toolchain.internal.NativeCompileSpec;
    
    /**
     * Compiles C source files into object files.
     */
    @Incubating
    @CacheableTask
    public abstract class CCompile extends AbstractNativeSourceCompileTask {
        @Override
        protected NativeCompileSpec createCompileSpec() {
            return new DefaultCCompileSpec();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/main/java/org/gradle/language/base/internal/compile/Compiler.java

     * limitations under the License.
     */
    package org.gradle.language.base.internal.compile;
    
    import org.gradle.api.tasks.WorkResult;
    
    public interface Compiler<T extends CompileSpec> {
        WorkResult execute(T spec);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 794 bytes
    - Viewed (0)
  7. platforms/native/language-native/src/test/groovy/org/gradle/language/c/tasks/CCompileTest.groovy

            def result = Mock(WorkResult)
    
            when:
            cCompile.toolChain = toolChain
            cCompile.targetPlatform = platform
            cCompile.compilerArgs = ["arg"]
            cCompile.macros = [def: "value"]
            cCompile.objectFileDir = temporaryFolder.file("outputFile")
            cCompile.source sourceFile
            cCompile.setPreCompiledHeader pch
            execute(cCompile)
    
            then:
            _ * toolChain.outputType >> "c"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinaryTest.groovy

        def "compiler defines are taken from cpp, c and rc compiler configurations combined"() {
            when:
            cCompiler.macros >> [_c: null]
            cppCompiler.macros >> [foo: "bar", _cpp: null]
            rcCompiler.macros >> [rc: "defined", rc_empty: null]
            exeBinary.getToolByName('cCompiler') >> cCompiler
            exeBinary.getToolByName('cppCompiler') >> cppCompiler
            exeBinary.getToolByName('rcCompiler') >> rcCompiler
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/GccPlatformToolProvider.java

                gccMetadata.getComponent().getVersion())
            );
        }
    
        @Override
        protected Compiler<CCompileSpec> createCCompiler() {
            GccCommandLineToolConfigurationInternal cCompilerTool = toolRegistry.getTool(ToolType.C_COMPILER);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  10. maven-core/src/test/remote-repo/org/apache/maven/plugins/maven-compiler-plugin/0.1/maven-compiler-plugin-0.1.jar

    public void execute() { } } META-INF/maven/org.apache.maven.plugins/maven-compiler-plugin/pom.xml 4.0.0 org.apache.maven.plugins maven-compiler-plugin 0.1 maven-plugin Maven Integration Test Plugin A test plugin to assist testing of Maven core. 2009 maven-core-it file:///${basedir}/repo true true org.apache.maven maven-plugin-api 2.0 . pom.xml src/** src/main/resources META-INF/maven/org.apache.maven.plugins/maven-compiler-plugin/pom.properties #Generated by Maven #Sat Oct 24 00:48:12 CEST 2009 version=0.1...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 23 23:48:02 UTC 2009
    - 7.9K bytes
    - Viewed (0)
Back to top