Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for linkTask (0.13 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/tasks/StripSymbolsIntegrationTest.groovy

                }
    
                task stripSymbolsDebug(type: StripSymbols) { strip ->
                    project.application.binaries.get { !it.optimized }.configure {
                        def linkDebug = linkTask.get()
                        strip.toolChain = linkDebug.toolChain
                        strip.targetPlatform = linkDebug.targetPlatform
                        strip.binaryFile.set linkDebug.linkedFile
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/language/base/plugins/ComponentModelBasePlugin.java

            // Finalizing here, as we need this to run after any 'assembling' task (jar, link, etc) is created.
            // TODO: Convert this to `@BinaryTasks` when we model a `NativeAssembly` instead of wiring compile tasks directly to LinkTask
            @Finalize
            void createSourceTransformTasks(final TaskContainer tasks, @Path("binaries") final ModelMap<BinarySpecInternal> binaries, LanguageTransformContainer languageTransforms, ServiceRegistry serviceRegistry) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftLibraryIntegrationTest.groovy

                    compileTask.get().objectFileDir = layout.buildDirectory.dir("object-files")
                    compileTask.get().moduleFile = layout.buildDirectory.file("some-lib.swiftmodule")
                    linkTask.get().linkedFile = layout.buildDirectory.file("some-lib/main.bin")
                }
             """
    
            expect:
            succeeds "assemble"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 15:17:55 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeMultipleSwiftProjectIntegrationTest.groovy

                    apply plugin: 'swift-library'
                    dependencies {
                        api project(':cppGreeter')
                    }
                    library.binaries.configureEach {
                        linkTask.get().linkerArgs.add("-lc++")
                    }
                }
                project(':cppGreeter') {
                    apply plugin: 'cpp-library'
                    library.linkage = [Linkage.STATIC]
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

                apply plugin: 'cpp-application'
                application.binaries.get { !it.optimized }.configure {
                    compileTask.get().objectFileDir = layout.buildDirectory.dir("object-files")
                    linkTask.get().linkedFile = layout.buildDirectory.file("exe/some-app.exe")
                    installTask.get().installDirectory = layout.buildDirectory.dir("some-app")
                }
             """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryIntegrationTest.groovy

                apply plugin: 'cpp-library'
                library.binaries.get { !it.optimized }.configure {
                    compileTask.get().objectFileDir = layout.buildDirectory.dir("object-files")
                    def link = linkTask.get()
                    link.linkedFile = layout.buildDirectory.file("shared/main.bin")
                    if (link.importLibrary.present) {
                        link.importLibrary = layout.buildDirectory.file("import/main.lib")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

                    compileTask.get().objectFileDir = layout.buildDirectory.dir("object-files")
                    compileTask.get().moduleFile = layout.buildDirectory.file("some-app.swiftmodule")
                    linkTask.get().linkedFile = layout.buildDirectory.file("exe/some-app.exe")
                    installTask.get().installDirectory = layout.buildDirectory.dir("some-app")
                }
             """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (1)
  8. src/compress/flate/inflate.go

    )
    
    type huffmanDecoder struct {
    	min      int                      // the minimum code length
    	chunks   [huffmanNumChunks]uint32 // chunks as described above
    	links    [][]uint32               // overflow links
    	linkMask uint32                   // mask the width of the link table
    }
    
    // Initialize Huffman decoding tables from array of code lengths.
    // Following this function, h is guaranteed to be initialized into a complete
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/wasm/ssa.go

       Global 0 is SP (stack pointer)
       Global 1 is CTXT (closure pointer)
       Global 2 is GP (goroutine pointer)
    */
    
    func Init(arch *ssagen.ArchInfo) {
    	arch.LinkArch = &wasm.Linkwasm
    	arch.REGSP = wasm.REG_SP
    	arch.MAXWIDTH = 1 << 50
    
    	arch.ZeroRange = zeroRange
    	arch.Ginsnop = ginsnop
    
    	arch.SSAMarkMoves = ssaMarkMoves
    	arch.SSAGenValue = ssaGenValue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/arch/arch.go

    		instructions[s] = obj.As(i)
    	}
    	for i, s := range wasm.Anames {
    		if obj.As(i) >= obj.A_ARCHSPECIFIC {
    			instructions[s] = obj.As(i) + obj.ABaseWasm
    		}
    	}
    
    	return &Arch{
    		LinkArch:       &wasm.Linkwasm,
    		Instructions:   instructions,
    		Register:       wasm.Register,
    		RegisterPrefix: nil,
    		RegisterNumber: nilRegisterNumber,
    		IsJump:         jumpWasm,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 06:51:28 UTC 2023
    - 21.3K bytes
    - Viewed (0)
Back to top