Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 85 for cppCompile (0.15 sec)

  1. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.toolchain.ConfigurableToolChain.xml

                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <!-- <tr><td>assembler</td></tr>
                <tr><td>cCompiler</td></tr>
                <tr><td>cppCompiler</td></tr>
                <tr><td>linker</td></tr>
                <tr><td>objcCompiler</td></tr>
                <tr><td>objcppCompiler</td></tr>
                <tr><td>staticLibArchiver</td></tr>-->
            </table>
        </section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/visual-studio/groovy/build.gradle

        }
    
        // For any shared library binaries built with Visual C++, define the DLL_EXPORT macro
        binaries {
            withType(SharedLibraryBinarySpec) {
                if (toolChain in VisualCpp) {
                    cppCompiler.define "DLL_EXPORT"
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/CppCompilerTest.groovy

    class CppCompilerTest extends GccCompatibleNativeCompilerTest {
    
        @Override
        protected NativeCompiler getCompiler(CommandLineToolContext invocationContext, String objectFileExtension, boolean useCommandFile) {
            new CppCompiler(buildOperationExecutor, compilerOutputFileNamingSchemeFactory, commandLineTool, invocationContext, objectFileExtension, useCommandFile, workerLeaseService)
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/CppCompilerTest.groovy

    class CppCompilerTest  extends VisualCppNativeCompilerTest {
    
        @Override
        protected NativeCompiler getCompiler(CommandLineToolContext invocationContext, String objectFileExtension, boolean useCommandFile) {
            new CppCompiler(buildOperationExecutor, compilerOutputFileNamingSchemeFactory, commandLineTool, invocationContext, Transformers.noOpTransformer(), objectFileExtension, useCommandFile, workerLeaseService)
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.NativeBinarySpec.xml

                </tr>
                <tr>
                    <td>assembler</td>
                </tr>
                <tr>
                    <td>cCompiler</td>
                </tr>
                <tr>
                    <td>cppCompiler</td>
                </tr>
                <tr>
                    <td>objcCompiler</td>
                </tr>
                <tr>
                    <td>objcppCompiler</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. 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)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeDependentComponentsIntegrationSpec.groovy

                        greetings(NativeLibrarySpec) {
                            binaries.all {
                                if (!org.gradle.internal.os.OperatingSystem.current().isWindows()) {
                                    cppCompiler.args("-fPIC");
                                }
                            }
                        }
                        hello(NativeLibrarySpec) {
                            binaries.all {
    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/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/ClangToolChainTest.groovy

                assert platformToolChain.assembler.executable == 'clang'
                assert platformToolChain.cCompiler.executable == 'clang'
                assert platformToolChain.cppCompiler.executable == 'clang++'
                assert platformToolChain.objcCompiler.executable == 'clang'
                assert platformToolChain.objcppCompiler.executable == 'clang++'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3K 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/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLanguageParallelIntegrationTest.groovy

                        binaries {
                            withType(StaticLibraryBinarySpec) {
                                if (toolChain in Gcc || toolChain in Clang) {
                                    cppCompiler.args '-fPIC'
                                }
                            }
                        }
    
                        components {
                            ${name}Main(NativeExecutableSpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top