Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 482 for linkage (0.14 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainCrossCompilationIntegrationTest.groovy

    apply plugin: 'c'
    
    model {
        toolChains {
            ${toolChain.buildScriptConfig}
        }
        components {
            main(NativeExecutableSpec) {
                binaries.all {
                    lib library: 'hello', linkage: 'static'
                }
            }
            hello(NativeLibrarySpec)
        }
    }
    """
    
            helloWorldApp.executable.writeSources(file("src/main"))
            helloWorldApp.library.writeSources(file("src/hello"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/CppBinary.java

         */
        String getBaseName();
    
        /**
         * Returns the compilation details.
         */
        CompilationDetails getCompilationDetails();
    
        /**
         * Returns the linkage details.
         */
        LinkageDetails getLinkageDetails();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/xcode-task-graph.dot

        cppApplication_xcodeProject[label="xcodeProject"]
      }
    
      subgraph cluster_cppLibrary {
        label = "C++ Library Plugin\n(shared or static linkage)"
    
        {cppLibrary_xcodeScheme, cppLibrary_xcodeProjectWorkspaceSettings} -> cppLibrary_xcodeProject [dir=back]
    
        cppLibrary_xcodeScheme[label="xcodeScheme"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/swift-library-variant-task-graph.dot

      compileVariantSwift[label=<compile<i>Variant</i>Swift>]
      linkVariant[label=<link<i>Variant</i>>]
      createVariant[label=<create<i>Variant</i>>]
      assembleVariant[label=<assemble<i>Variant</i>>]
    
      // Adds linkage text between link* and create*
      linkVariant -> linkageText -> createVariant [style=invis]
      {rank=same linkVariant linkageText createVariant}
      linkageText[shape=plain, label="and/or\n(see note)"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/cpp-library-variant-task-graph.dot

      compileVariantCpp[label=<compile<i>Variant</i>Cpp>]
      linkVariant[label=<link<i>Variant</i>>]
      createVariant[label=<create<i>Variant</i>>]
      assembleVariant[label=<assemble<i>Variant</i>>]
    
      // Adds linkage text between link* and create*
      linkVariant -> linkageText -> createVariant [style=invis]
      {rank=same linkVariant linkageText createVariant}
      linkageText[shape=plain, label="and/or\n(see note)"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/swiftpm/tasks/GenerateSwiftPackageManagerManifest.java

    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.provider.Property;
    import org.gradle.api.tasks.Input;
    import org.gradle.api.tasks.OutputFile;
    import org.gradle.api.tasks.TaskAction;
    import org.gradle.nativeplatform.Linkage;
    import org.gradle.swiftpm.Package;
    import org.gradle.swiftpm.internal.AbstractProduct;
    import org.gradle.swiftpm.internal.BranchDependency;
    import org.gradle.swiftpm.internal.DefaultLibraryProduct;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitIntegrationTest.groovy

        }
        testSuites {
            helloTest(CUnitTestSuiteSpec) {
                testing \$.components.hello
            }
        }
        binaries {
            withType(CUnitTestSuiteBinarySpec) {
                lib library: "cunit", linkage: "static"
            }
        }
    }
    """
        }
    
        private def getCunitLibName() {
            return OperatingSystem.current().getStaticLibraryName("cunit")
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17K bytes
    - Viewed (0)
  8. src/runtime/cgo/asm_s390x.s

    // Saves C callee-saved registers and calls cgocallback with three arguments.
    // fn is the PC of a func(a unsafe.Pointer) function.
    TEXT crosscall2(SB),NOSPLIT|NOFRAME,$0
    	// Start with standard C stack frame layout and linkage.
    
    	// Save R6-R15 in the register save area of the calling function.
    	STMG	R6, R15, 48(R15)
    
    	// Allocate 96 bytes on the stack.
    	MOVD	$-96(R15), R15
    
    	// Save F8-F15 in our stack frame.
    	FMOVD	F8, 32(R15)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. src/runtime/cgo/gcc_util.c

    	but it's standard and should be very efficient.
    
    	GCC 7 has an unfortunate habit of optimizing out strncpy calls (see
    	https://golang.org/issue/21196), so the arguments here need to be global
    	variables with external linkage in order to ensure that the call traps all the
    	way down into libc.
    	*/
    	strncpy(&x_cgo_yield_strncpy_dst, &x_cgo_yield_strncpy_src,
    	        x_cgo_yield_strncpy_n);
    }
    
    void(* const _cgo_yield)() = &x_cgo_yield;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 18:49:38 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/CommonToolChainIntegrationTest.groovy

            given:
            buildFile << """
    apply plugin: 'c'
    
    model {
        components {
            main(NativeExecutableSpec) {
                binaries.all {
                    lib library: 'hello', linkage: 'api'
    
                    def librarySearchPath = 'build/libs/hello/static'
                    def libraryName = 'hello'
                    if (toolChain in VisualCpp) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top