Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for link66 (0.26 sec)

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

    	"time"
    
    	"cmd/internal/bio"
    	"cmd/internal/goobj"
    	"cmd/internal/notsha256"
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"cmd/link/internal/loadelf"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/loadmacho"
    	"cmd/link/internal/loadpe"
    	"cmd/link/internal/loadxcoff"
    	"cmd/link/internal/sym"
    )
    
    // Data layout and relocation.
    
    // Derived from Inferno utils/6l/l.h
    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. 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)
  3. 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)
  4. src/cmd/go/go_test.go

    		if !strings.Contains(line, "host link:") {
    			continue
    		}
    		hostLinkLine = line
    		break
    	}
    	if hostLinkLine == "" {
    		t.Fatal(`fail to find with "host link:" string in linker output`)
    	}
    	// Find parameter, like "/tmp/go-link-408556474/go.o" inside of
    	// "host link:" line, and extract temp directory /tmp/go-link-408556474
    	// out of it.
    	tmpdir := hostLinkLine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/elf.go

    		}
    
    		// Solaris dynamic linker can't handle an empty .rela.plt if
    		// DT_JMPREL is emitted so we have to defer generation of elf.DT_PLTREL,
    		// DT_PLTRELSZ, and elf.DT_JMPREL dynamic entries until after we know the
    		// size of .rel(a).plt section.
    
    		Elfwritedynent(ctxt.Arch, dynamic, elf.DT_DEBUG, 0)
    	}
    
    	if ctxt.IsShared() {
    		// The go.link.abihashbytes symbol will be pointed at the appropriate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. .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)
  7. configure.py

      if is_ppc64le():
        # Enable MMA Dynamic Dispatch support if 'gcc' and if linker >= 2.35
        gcc_env = get_gcc_compiler(environ_cp)
        if gcc_env is not None:
    
          # Use gold linker if 'gcc' and if 'ppc64le'
          write_to_bazelrc('build --linkopt="-fuse-ld=gold"')
    
          # Get the linker version
          ld_version = run_shell([gcc_env, '-Wl,-version']).split()
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. src/runtime/mheap.go

    //
    // When a mspan is allocated, state == mSpanInUse or mSpanManual
    // and heapmap(i) == span for all s->start <= i < s->start+s->npages.
    
    // Every mspan is in one doubly-linked list, either in the mheap's
    // busy list or one of the mcentral's span lists.
    
    // An mspan representing actual memory has state mSpanInUse,
    // mSpanManual, or mSpanFree. Transitions between these states are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  9. src/cmd/dist/test.go

    					}
    				}
    			}
    
    			// Doing a static link with boringcrypto gets
    			// a C linker warning on Linux.
    			// in function `bio_ip_and_port_to_socket_and_addr':
    			// warning: Using 'getaddrinfo' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. src/runtime/mprof.go

    // data, either a memRecord or a blockRecord.
    //
    // Per-call-stack profiling information.
    // Lookup by hashing call stack into a linked-list hash table.
    //
    // None of the fields in this bucket header are modified after
    // creation, including its next and allnext links.
    //
    // No heap pointers.
    type bucket struct {
    	_       sys.NotInHeap
    	next    *bucket
    	allnext *bucket
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top