Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,894 for ccCompiler (0.09 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppPlatformToolProvider.java

        }
    
        @Override
        protected Compiler<CCompileSpec> createCCompiler() {
            CommandLineToolInvocationWorker commandLineTool = tool("C compiler", visualCpp.getCompilerExecutable());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  2. maven-api-impl/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: Thu May 02 15:10:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. maven-core/src/test/remote-repo/org/apache/maven/plugins/maven-compiler-plugin/0.1/maven-compiler-plugin-0.1.pom

      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-compiler-plugin</artifactId>
      <version>0.1</version>
      <packaging>maven-plugin</packaging>
    
      <name>Maven Integration Test Plugin</name>
      <description>
        A test plugin to assist testing of Maven core.
      </description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Nov 09 12:45:14 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChainTest.groovy

            expect:
            toolChain.select(platform).available
    
            where:
            toolType << [ToolType.C_COMPILER, ToolType.CPP_COMPILER, ToolType.OBJECTIVEC_COMPILER, ToolType.OBJECTIVECPP_COMPILER]
        }
    
        def "is available when C++ compiler can be found and compiler has correct implementation when building C++"() {
            given:
            platform.operatingSystem >> dummyOs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  5. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-compiler-plugin/0.1/maven-compiler-plugin-0.1.pom

      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-compiler-plugin</artifactId>
      <version>0.1</version>
      <packaging>maven-plugin</packaging>
    
      <name>Maven Integration Test Plugin</name>
      <description>
        A test plugin to assist testing of Maven core.
      </description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChain.java

                        return toolProvider;
                    }
                    ToolSearchResult compiler = toolProvider.locateTool(ToolType.CPP_COMPILER);
                    if (compiler.isAvailable()) {
                        return toolProvider;
                    }
                    compiler = toolProvider.locateTool(ToolType.OBJECTIVEC_COMPILER);
                    if (compiler.isAvailable()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 20K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/c/plugins/CLangPlugin.java

                tools.put("cCompiler", DefaultPreprocessingTool.class);
                return tools;
            }
    
            @Override
            public String getLanguageName() {
                return "c";
            }
    
            @Override
            public ToolType getToolType() {
                return ToolType.C_COMPILER;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainCustomisationIntegrationTest.groovy

                }
    
                target("alwaysCPlusPlus") {
                    def compilerMap = [gcc: 'g++', clang: 'clang++']
                    cCompiler.executable = compilerMap[cCompiler.executable]
                    cCompiler.withArguments { args ->
                        Collections.replaceAll(args, "c", "c++")
                    }
                }
            }
        }
    
        platforms {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/c/groovy/build.gradle

            }
        }
    }
    // end::executables[]
    
    // tag::compiler-args[]
    model {
        binaries {
            all {
                // Define toolchain-specific compiler and linker options
                if (toolChain in Gcc) {
                    cCompiler.args "-O2"
                    linker.args "-Xlinker", "-S"
                }
                if (toolChain in VisualCpp) {
                    cCompiler.args "/Zi"
                    linker.args "/DEBUG"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/kotlindsl/kotlin-compiler-configuration.kt

    Paul Merlin <******@****.***> 1698249369 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:57 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top