Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for linknew (0.13 sec)

  1. src/cmd/link/internal/ld/lib.go

    	return nil
    }
    
    // extld returns the current external linker.
    func (ctxt *Link) extld() []string {
    	if len(flagExtld) == 0 {
    		// Return the default external linker for the platform.
    		// This only matters when link tool is called directly without explicit -extld,
    		// go tool already passes the correct linker in other cases.
    		switch buildcfg.GOOS {
    		case "darwin", "freebsd", "openbsd":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ppc64/asm.go

    	//
    	// 2) We reserve space for a pointer in the .plt section (once
    	//    per referenced dynamic function).  .plt is a data
    	//    section filled solely by the dynamic linker (more like
    	//    .plt.got on other architectures).  Initially, the
    	//    dynamic linker will fill each slot with a pointer to the
    	//    corresponding x@plt entry point.
    	//
    	// 3) We generate a "call stub" x_stub based on the properties
    	//    of the caller.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    [[sec:configuring_the_compiler_assembler_and_linker]]
    == Configuring the compiler, assembler and linker
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  4. tensorflow/BUILD

    # the shared library, only export the core TF API functions to avoid
    # causing library conflicts (e.g., those reported in github issue 1924).
    # On Linux, tell the linker (-Wl,<option>) to use a version script that
    # excludes all but a subset of function names.
    # On MacOS, the linker does not support version_script, but has an
    # an "-exported_symbols_list" command.  -z defs disallows undefined
    # symbols in object files.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loader/loader.go

    	} else {
    		l.attrOnList.Unset(i)
    	}
    }
    
    // AttrLocal returns true for symbols that are only visible within the
    // module (executable or shared library) being linked. This attribute
    // is applied to thunks and certain other linker-generated symbols.
    func (l *Loader) AttrLocal(i Sym) bool {
    	return l.attrLocal.Has(i)
    }
    
    // SetAttrLocal the "local" property for a symbol (see AttrLocal above).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  6. src/cmd/cgo/out.go

    		// cgo_export_static refers to a symbol by its linker
    		// name, so set the linker name of the Go wrapper.
    		fmt.Fprintf(fgo2, "//go:linkname _cgoexp%s_%s _cgoexp%s_%s\n", cPrefix, exp.ExpName, cPrefix, exp.ExpName)
    		// In external linking mode, the Go linker sees the Go
    		// wrapper, but not the C wrapper. For this case,
    		// export the Go wrapper so the host linker can
    		// resolve the reference from the C wrapper to the Go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/dwarf.go

    		// causes the program not to run. See https://golang.org/issue/20183
    		// Non c-archives can avoid this issue via a linker script
    		// (see fix near writeGDBLinkerScript).
    		// c-archive users would need to specify the linker script manually.
    		// For UX it's better not to deal with this.
    		return dwarfSecInfo{}
    	}
    	if gdbscript == "" {
    		return dwarfSecInfo{}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            }
            0 * action._
    
            when:
            registry.realize("foo", Bean)
    
            then:
            0 * action._
        }
    
        def "registration for linked element invoked before element is closed"() {
            def action = Mock(Action)
    
            given:
            registry.registerInstance("foo", new Bean())
            registry.mutate { it.path "foo" type Bean node action }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/elf.go

    /*
     * Symbol table entries.
     */
    
    /* For accessing the fields of st_info. */
    
    /* For constructing st_info from field values. */
    
    /* For accessing the fields of st_other. */
    
    /*
     * Go linker interface
     */
    const (
    	ELF64HDRSIZE  = 64
    	ELF64PHDRSIZE = 56
    	ELF64SHDRSIZE = 64
    	ELF64RELSIZE  = 16
    	ELF64RELASIZE = 24
    	ELF64SYMSIZE  = 24
    	ELF32HDRSIZE  = 52
    	ELF32PHDRSIZE = 32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. .bazelrc

    build:release_linux_base --copt=-Wno-error=array-parameter
    build:release_linux_base --copt=-Wno-error=unused-command-line-argument
    # Set lld as the linker.
    build:release_linux_base --linkopt="-fuse-ld=lld"
    build:release_linux_base --linkopt="-lm"
    
    # We have some invalid linker scripts in the build,
    # so we need to disable this check
    build:release_linux_base --linkopt=-Wl,--undefined-version
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top