Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,894 for ccCompiler (0.26 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/AbstractNativeBinarySpec.java

                .put("assembler", assembler)
                .put("cCompiler", cCompiler)
                .put("cppCompiler", cppCompiler)
                .put("objcCompiler", objcCompiler)
                .put("objcppCompiler", objcppCompiler)
                .put("rcCompiler", rcCompiler)
                .build();
    
        private PlatformToolProvider toolProvider;
        private Flavor flavor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/tools/ToolSearchPathTest.groovy

            registry.setPath([dir1, dir2])
    
            when:
            def result = registry.locate(ToolType.C_COMPILER, "cc")
    
            then:
            !result.available
    
            when:
            result.explain(visitor)
    
            then:
            1 * visitor.node("Could not find C compiler 'cc'. Searched in")
            1 * visitor.startChildren()
            1 * visitor.node(dir1.toString())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainDiscoveryIntegrationTest.groovy

            executable("build/exe/main/main").exec().out == helloWorldApp.englishOutput
        }
    
        def "does not break when compiler not available and not building"() {
            when:
            buildFile << """
    model {
        toolChains {
            ${toolChain.id} {
                eachPlatform {
                    cCompiler.executable = 'does-not-exist'
                    cppCompiler.executable = 'does-not-exist'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/c/CLanguageIntegrationTest.groovy

                            if (toolChain in VisualCpp) {
                                cCompiler.args '/DVERSION="The version is \\'1.0\\'"'
                                linker.args '/MANIFESTUAC:level=\\'asInvoker\\' uiAccess=\\'false\\''
                            } else if (toolChain in Clang) {
                                cCompiler.args '-frandom-seed="here is the \\'random\\' seed"'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/ToolType.java

    public enum ToolType {
        CPP_COMPILER("C++ compiler"),
        C_COMPILER("C compiler"),
        OBJECTIVECPP_COMPILER("Objective-C++ compiler"),
        OBJECTIVEC_COMPILER("Objective-C compiler"),
        WINDOW_RESOURCES_COMPILER("Windows resources compiler"),
        ASSEMBLER("Assembler"),
        LINKER("Linker"),
        STATIC_LIB_ARCHIVER("Static library archiver"),
        SWIFT_COMPILER("Swift compiler"),
        SYMBOL_EXTRACTOR("Symbol extractor"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/resources/META-INF/gradle-plugins/org.gradle.clang-compiler.properties

    Sterling Greene <******@****.***> 1700166003 -0500
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 85 bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/resources/META-INF/gradle-plugins/org.gradle.gcc-compiler.properties

    Sterling Greene <******@****.***> 1700166003 -0500
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 83 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.NativeBinarySpec.xml

                </tr>
                <tr>
                    <td>cCompiler</td>
                </tr>
                <tr>
                    <td>cppCompiler</td>
                </tr>
                <tr>
                    <td>objcCompiler</td>
                </tr>
                <tr>
                    <td>objcppCompiler</td>
                </tr>
                <tr>
                    <td>rcCompiler</td>
                </tr>
            </table>
        </section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testerrors/badsym_test.go

    			t.Fatal(err)
    		}
    		return out
    	}
    
    	// Build a shared library that defines a symbol whose name
    	// contains magicInput.
    
    	cShared := cCompile("-shared", "c.so", cDefFile)
    
    	// Build an object file that refers to the symbol whose name
    	// contains magicInput.
    
    	cObj := cCompile("-c", "c.o", cRefFile)
    
    	// Rewrite the shared library and the object file, replacing
    	// magicInput with magicReplace. This will have the effect of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:37:31 UTC 2023
    - 5.7K 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