Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,259 for cCompiler (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTasks.java

            private String cCompiler;
            private String CFlags;
            private String dns;
            private String URL;
            private String a;
            private String b;
    
            @Inject
            public TaskWithJavaBeanCornerCaseProperties(String cCompiler, String CFlags, String dns, String URL, String a, String b) {
                this.cCompiler = cCompiler;
                this.CFlags = CFlags;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 12 11:41:48 UTC 2022
    - 15.8K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChainTest.groovy

            !platformToolChain.available
            getMessage(platformToolChain) == "c compiler not found"
        }
    
        def "is unavailable when no C++ compiler can be found and building C++"() {
            def compilerMissing = Stub(CommandLineToolSearchResult) {
                isAvailable() >> false
                explain(_) >> { DiagnosticsVisitor visitor -> visitor.node("c++ compiler not found") }
            }
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractorTest.groovy

            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:
            schema instanceof ManagedImplSchema
            def cCompiler = schema.properties[0]
            assert cCompiler instanceof ModelProperty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  9. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitIntegrationTest.groovy

            )
        }
    
        @ToBeFixedForConfigurationCache
        def "can supply cCompiler macro to cunit sources"() {
            given:
            useConventionalSourceLocations()
            useStandardConfig()
    
            when:
            buildFile << """
    model {
        binaries {
            withType(CUnitTestSuiteBinarySpec) {
                cCompiler.define "ONE_TEST"
            }
        }
    }
    """
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinary.java

        }
    
        private List<String> getDefines(String tool) {
            PreprocessingTool rcCompiler = findCompiler(tool);
            return rcCompiler == null ? new ArrayList<>() : new MacroArgsConverter().transform(rcCompiler.getMacros());
        }
    
        private PreprocessingTool findCompiler(String tool) {
            return (PreprocessingTool) binary.getToolByName(tool);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.4K bytes
    - Viewed (0)
Back to top