Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 147 for link66 (0.12 sec)

  1. src/cmd/internal/obj/link.go

    // LinkArch is the definition of a single architecture.
    type LinkArch struct {
    	*sys.Arch
    	Init           func(*Link)
    	ErrorCheck     func(*Link, *LSym)
    	Preprocess     func(*Link, *LSym, ProgAlloc)
    	Assemble       func(*Link, *LSym, ProgAlloc)
    	Progedit       func(*Link, *Prog, ProgAlloc)
    	SEH            func(*Link, *LSym) *LSym
    	UnaryDst       map[As]bool // Instruction takes one operand, a destination.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. src/cmd/cgo/doc.go

    argument, so that the host linker will be able to find 'sin' in the
    math library.
    
    cmd/link Command Line Interface
    
    The go command and any other Go-aware build systems invoke cmd/link
    to link a collection of packages into a single binary. By default, cmd/link will
    present the same interface it does today:
    
    	cmd/link main.a
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  3. src/syscall/syscall_linux.go

    				return EOPNOTSUPP
    			}
    		}
    		return err
    	}
    	return fchmodat(dirfd, path, mode)
    }
    
    //sys	linkat(olddirfd int, oldpath string, newdirfd int, newpath string, flags int) (err error)
    
    func Link(oldpath string, newpath string) (err error) {
    	return linkat(_AT_FDCWD, oldpath, _AT_FDCWD, newpath, 0)
    }
    
    func Mkdir(path string, mode uint32) (err error) {
    	return Mkdirat(_AT_FDCWD, path, mode)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/gccgo.go

    		// -lgo -lpthread -lm in the final link. We can't use
    		// -r to pick them up because we can't combine
    		// split-stack and non-split-stack code in a single -r
    		// link, and libgo picks up non-split-stack code from
    		// libffi.
    		ldflags = append(ldflags, "-Wl,-r", "-nostdlib")
    		ldflags = append(ldflags, goLibBegin...)
    
    		if nopie := b.gccNoPie([]string{tools.linker()}); nopie != "" {
    			ldflags = append(ldflags, nopie)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/security.go

    // Checking of compiler and linker flags.
    // We must avoid flags like -fplugin=, which can allow
    // arbitrary code execution during the build.
    // Do not make changes here without carefully
    // considering the implications.
    // (That's why the code is isolated in a file named security.go.)
    //
    // Note that -Wl,foo means split foo on commas and pass to
    // the linker, so that -Wl,-foo,bar means pass -foo bar to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. src/runtime/symtab.go

    	}
    	return *p
    }
    
    // modulesinit creates the active modules slice out of all loaded modules.
    //
    // When a module is first loaded by the dynamic linker, an .init_array
    // function (written by cmd/link) is invoked to call addmoduledata,
    // appending to the module to the linked list that starts with
    // firstmoduledata.
    //
    // There are two times this can happen in the lifecycle of a Go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/main.go

    	flag.Var(&flagExtld, "extld", "use `linker` when linking in external mode")
    	flag.Var(&flagExtldflags, "extldflags", "pass `flags` to external linker")
    	flag.Var(&flagW, "w", "disable DWARF generation")
    }
    
    // Flags used by the linker. The exported flags are used by the architecture-specific packages.
    var (
    	flagBuildid = flag.String("buildid", "", "record `id` as Go toolchain build id")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelElementNode.java

            return links == null ? Collections.<MutableModelNode>emptyList() : Iterables.filter(links.values(), predicate);
        }
    
        @Override
        public int getLinkCount() {
            return links == null ? 0 : links.size();
        }
    
        @Override
        public boolean hasLink(String name, Predicate<? super MutableModelNode> predicate) {
            ModelNodeInternal linked = getLink(name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/elf_test.go

    		}
    	}
    }
    
    func TestElfBindNow(t *testing.T) {
    	t.Parallel()
    	testenv.MustHaveGoBuild(t)
    
    	const (
    		prog = `package main; func main() {}`
    		// with default buildmode code compiles in a statically linked binary, hence CGO
    		progC = `package main; import "C"; func main() {}`
    	)
    
    	// Notes:
    	// - for linux/amd64 and linux/arm64, for relro we'll always see a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/buildid.go

    	c := cache.Default()
    
    	// Cache output from compile/link, even if we don't do the rest.
    	switch a.Mode {
    	case "build":
    		cache.PutBytes(c, cache.Subkey(a.actionID, "stdout"), a.output)
    	case "link":
    		// Even though we don't cache the binary, cache the linker text output.
    		// We might notice that an installed binary is up-to-date but still
    		// want to pretend to have run the linker.
    		// Store it under the main package's action ID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top