Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 599 for linknew (0.34 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/c/groovy/build.gradle

    model {
        binaries {
            all {
                // Define toolchain-specific compiler and linker options
                if (toolChain in Gcc) {
                    cCompiler.args "-O2"
                    linker.args "-Xlinker", "-S"
                }
                if (toolChain in VisualCpp) {
                    cCompiler.args "/Zi"
                    linker.args "/DEBUG"
                }
            }
        }
    }
    // end::compiler-args[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/MutableModelNode.java

        /**
         * Adds a node to the graph, linked from this node. The given registration is used to initialize the node when required.
         *
         * The path returned by {@link ModelRegistration#getPath()} is used to determine the name of the link.
         */
        void addLink(ModelRegistration registration);
    
        /**
         * Removes a node linked from this node from the graph.
         */
        void removeLink(String name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/link.go

    // (1) scheme is enough to express any kind of operand combination.
    //
    // Jump instructions use the To.Val field to point to the target *Prog,
    // which must be in the same linked list as the jump instruction.
    //
    // The Progs for a given function are arranged in a list linked through the Link field.
    //
    // Each Prog is charged to a specific source line in the debug information,
    // specified by Pos.Line().
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/config.go

    		c.FPReg = framepointerRegLOONG64
    		c.LinkReg = linkRegLOONG64
    		c.hasGReg = true
    	case "s390x":
    		c.PtrSize = 8
    		c.RegSize = 8
    		c.lowerBlock = rewriteBlockS390X
    		c.lowerValue = rewriteValueS390X
    		c.registers = registersS390X[:]
    		c.gpRegMask = gpRegMaskS390X
    		c.fpRegMask = fpRegMaskS390X
    		c.FPReg = framepointerRegS390X
    		c.LinkReg = linkRegS390X
    		c.hasGReg = true
    		c.noDuffDevice = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/gccgo.go

    	if GccgoName == "" {
    		GccgoName = "gccgo"
    	}
    	GccgoBin, gccgoErr = cfg.LookPath(GccgoName)
    }
    
    func (gccgoToolchain) compiler() string {
    	checkGccgoBin()
    	return GccgoBin
    }
    
    func (gccgoToolchain) linker() string {
    	checkGccgoBin()
    	return GccgoBin
    }
    
    func (gccgoToolchain) ar() []string {
    	return envList("AR", "ar")
    }
    
    func checkGccgoBin() {
    	if gccgoErr == nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/impl/DefaultDeleterTest.groovy

            content.assertDoesNotExist()
        }
    
        @Requires(UnitTestPreconditions.Symlinks)
        def "recreates target directory when symlink is found, leaving linked content untouched"() {
            def linked = tmpDir.createDir("linked")
            def content = linked.createFile("content.txt")
            def target = tmpDir.file("target").tap { Files.createSymbolicLink(it.toPath(), linked.toPath()) }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 12:40:48 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/cpp/groovy/build.gradle

                // Define toolchain-specific compiler and linker options
                if (toolChain in Gcc) {
                    cppCompiler.args "-O2", "-fno-access-control"
                    linker.args "-Xlinker", "-S"
                }
                if (toolChain in VisualCpp) {
                    cppCompiler.args "/Zi"
                    linker.args "/DEBUG"
                }
            }
        }
    }
    // end::all-binaries[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. test/linkx_run.go

    	_, err = cmd.CombinedOutput()
    	if err == nil {
    		fmt.Println("-X linker flag should not accept keys without values")
    		os.Exit(1)
    	}
    
    	// Issue 9621
    	cmd = exec.Command("go", "run", "-ldflags=-X main.b=false -X main.x=42", "linkx.go")
    	outx, err := cmd.CombinedOutput()
    	if err == nil {
    		fmt.Println("-X linker flag should not overwrite non-strings")
    		os.Exit(1)
    	}
    	outstr := string(outx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. doc/initial/5-toolchain.md

    ## Compiler {#compiler}
    
    ## Assembler {#assembler}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 18:07:49 UTC 2024
    - 74 bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/swift/SwiftLinkerTest.groovy

        BuildOperationExecutor buildOperationExecutor = Mock(BuildOperationExecutor)
        BuildOperationQueue queue = Mock(BuildOperationQueue)
        WorkerLeaseService workerLeaseService = new TestWorkerLeaseService()
    
        SwiftLinker linker = new SwiftLinker(buildOperationExecutor, commandLineTool, invocationContext, workerLeaseService)
    
        def "ignores install name for all major operating system"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top