Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 42 for getCompiler (0.29 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/GccPlatformToolChain.java

     */
    @Incubating
    public interface GccPlatformToolChain extends NativePlatformToolChain {
        /**
         * Returns the settings to use for the C compiler.
         */
        GccCommandLineToolConfiguration getcCompiler();
    
        /**
         * Returns the settings to use for the C++ compiler.
         */
        GccCommandLineToolConfiguration getCppCompiler();
    
        /**
         * Returns the settings to use for the Objective-C compiler.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/VisualCppPlatformToolChain.java

     */
    @Incubating
    public interface VisualCppPlatformToolChain extends NativePlatformToolChain {
        /**
         * Returns the settings to use for the C compiler.
         */
        CommandLineToolConfiguration getcCompiler();
    
        /**
         * Returns the settings to use for the C++ compiler.
         */
        CommandLineToolConfiguration getCppCompiler();
    
        /**
         * Returns the settings to use for the Windows resources compiler.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/clang/ClangToolChain.java

        }
    
        @Override
        protected void configureDefaultTools(DefaultGccPlatformToolChain toolChain) {
            toolChain.getLinker().setExecutable("clang++");
            toolChain.getcCompiler().setExecutable("clang");
            toolChain.getCppCompiler().setExecutable("clang++");
            toolChain.getObjcCompiler().setExecutable("clang");
            toolChain.getObjcppCompiler().setExecutable("clang++");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultVisualCppPlatformToolChain.java

            tools.put(ToolType.WINDOW_RESOURCES_COMPILER, instantiator.newInstance(DefaultCommandLineToolConfiguration.class, ToolType.WINDOW_RESOURCES_COMPILER));
        }
    
        @Override
        public CommandLineToolConfiguration getcCompiler() {
            return tools.get(ToolType.C_COMPILER);
        }
    
        @Override
        public CommandLineToolConfiguration getCppCompiler() {
            return tools.get(ToolType.CPP_COMPILER);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/LanguageTaskNames.groovy

                this.operatingSystemFamily = operatingSystemFamily
                return this
            }
    
            abstract class VariantTasks {
                protected abstract String getBuildType()
    
                String getCompile() {
                    return withProject("compile${buildType}${variant}${languageTaskSuffix}")
                }
    
                String getLink() {
                    return withProject("link${buildType}${variant}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

            }
    
            public File getLinker() {
                return getCCompiler();
            }
    
            public File getStaticLibArchiver() {
                return find("ar");
            }
    
            public abstract File getCppCompiler();
    
            public abstract File getCCompiler();
    
            @Override
            public String getUnitTestPlatform() {
    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. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeBinarySpec.java

         *
         * Valid for {@link SharedLibraryBinarySpec}, {@link StaticLibraryBinarySpec} and
         * {@link NativeExecutableBinarySpec} when the 'c' plugin is applied.
         */
        PreprocessingTool getcCompiler();
    
        /**
         * The configuration of the C++ compiler used when compiling C++ sources for this binary.
         *
         * Valid for {@link SharedLibraryBinarySpec}, {@link StaticLibraryBinarySpec} and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/AbstractNativeBinarySpec.java

            return staticLibArchiver;
        }
    
        @Override
        public Tool getAssembler() {
            return assembler;
        }
    
        @Override
        public PreprocessingTool getcCompiler() {
            return cCompiler;
        }
    
        @Override
        public PreprocessingTool getCppCompiler() {
            return cppCompiler;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractorTest.groovy

            a.name == "a"
        }
    
        @Managed
        interface HasSingleCharFirstPartGetter {
            String getcCompiler()
            void setcCompiler(String cCompiler)
        }
    
        def "extraction of single char first camel-case part getter like getcCompiler() is javabeans compliant"() {
            when:
            def schema = store.getSchema(HasSingleCharFirstPartGetter)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTasks.java

                this.CFlags = CFlags;
                this.dns = dns;
                this.URL = URL;
                this.a = a;
                this.b = b;
            }
    
            @Input
            public String getcCompiler() {
                return cCompiler;
            }
    
            @Input
            public String getCFlags() {
                return CFlags;
            }
    
            @Input
            public String getDns() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 12 11:41:48 UTC 2022
    - 15.8K bytes
    - Viewed (0)
Back to top