Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for cppCompile (0.33 sec)

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

            bean.CCompiler == 'upper-case first char' && bean.getCCompiler() == bean.CCompiler
            bean.cppCompiler == 'cppCompiler' && bean.getCppCompiler() == bean.cppCompiler
            bean.CPPCompiler == 'CPPCompiler' && bean.getCPPCompiler() == bean.CPPCompiler
            bean.a == 'some a' && bean.getA() == bean.a
            bean.b == 'some b' && bean.getb() == bean.b
        }
    
        static class DeviantBean {
    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/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinaryTest.groovy

            targetBinary.cleanTaskPath == ":project-path:clean"
        }
    
        def "compiler defines are taken from cpp compiler configuration"() {
            when:
            cppCompiler.macros >> [foo: "bar", empty: null]
            exeBinary.getToolByName("cppCompiler") >> cppCompiler
    
            then:
            targetBinary.compilerDefines == ["foo=bar", "empty"]
        }
    
        def "compiler defines are taken from c compiler configuration"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  3. 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)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppPlatformToolProvider.java

        @Override
        protected Compiler<CppCompileSpec> createCppCompiler() {
            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. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/GccPlatformToolProvider.java

            CppCompiler cppCompiler = new CppCompiler(buildOperationExecutor, compilerOutputFileNamingSchemeFactory, commandLineTool(cppCompilerTool), context(cppCompilerTool), getObjectFileExtension(), useCommandFile, workerLeaseService);
            OutputCleaningCompiler<CppCompileSpec> outputCleaningCompiler = new OutputCleaningCompiler<CppCompileSpec>(cppCompiler, compilerOutputFileNamingSchemeFactory, getObjectFileExtension());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  6. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/GoogleTestIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "can supply cppCompiler macro to googleTest sources"() {
            given:
            useConventionalSourceLocations()
            useStandardConfig()
    
            when:
            buildFile << """
    model {
        binaries {
            withType(GoogleTestTestSuiteBinarySpec) {
                cppCompiler.define "ONE_TEST"
            }
        }
    }
    """
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChainTest.groovy

                argsFor(platformToolChain.linker) == linkerArg
                argsFor(platformToolChain.cCompiler) == compilerArg
                argsFor(platformToolChain.cppCompiler) == compilerArg
                argsFor(platformToolChain.assembler) == compilerArg
                argsFor(platformToolChain.objcCompiler) == compilerArg
                argsFor(platformToolChain.objcppCompiler) == compilerArg
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChain.java

                    }
                    ToolSearchResult cppCompiler = toolProvider.locateTool(ToolType.CPP_COMPILER);
                    if (cppCompiler.isAvailable()) {
                        return toolProvider;
                    }
                    // No C++ compiler, complain about it
                    return new UnavailablePlatformToolProvider(targetMachine.getOperatingSystem(), cppCompiler);
                case ANY:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 20K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelSingleProjectIntegrationTest.groovy

            app.writeSources(file("src/main"))
            buildFile << """
    model {
        components {
            main(NativeExecutableSpec) {
                binaries.all {
                    cppCompiler.define "TEST"
                    cppCompiler.define "foo", "bar"
                }
            }
        }
    }
    """
            and:
            run "visualStudio"
    
            then:
            executedAndNotSkipped ":visualStudio"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

                config += "             platformToolChain.cCompiler.executable='i686-pc-cygwin-gcc.exe'\n";
                config += "             platformToolChain.cppCompiler.executable='i686-pc-cygwin-g++.exe'\n";
                config += "             platformToolChain.linker.executable='i686-pc-cygwin-g++.exe'\n";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 41.6K bytes
    - Viewed (0)
Back to top