Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for IsSolaris (0.11 sec)

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

    			continue
    		}
    
    		// We need to be able to reference dynimport symbols when linking against
    		// shared libraries, and AIX, Darwin, OpenBSD and Solaris always need it.
    		if !target.IsAIX() && !target.IsDarwin() && !target.IsSolaris() && !target.IsOpenbsd() && rs != 0 && rst == sym.SDYNIMPORT && !target.IsDynlinkingGo() && !ldr.AttrSubSymbol(rs) {
    			if !(target.IsPPC64() && target.IsExternal() && ldr.SymName(rs) == ".TOC.") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/asm6.go

    // This happens on systems like Solaris that call .so functions instead of system calls.
    // It does not seem to be necessary for any other systems. This is probably working
    // around a Solaris-specific bug that should be fixed differently, but we don't know
    // what that bug is. And this does fix it.
    func useAbs(ctxt *obj.Link, s *obj.LSym) bool {
    	if ctxt.Headtype == objabi.Hsolaris {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    	case "aix", "darwin", "illumos", "ios", "solaris", "windows":
    		return true
    	case "openbsd":
    		return GOARCH != "mips64"
    	}
    	return false
    }
    
    // mStackIsSystemAllocated indicates whether this runtime starts on a
    // system-allocated stack.
    func mStackIsSystemAllocated() bool {
    	switch GOOS {
    	case "aix", "darwin", "plan9", "illumos", "ios", "solaris", "windows":
    		return true
    	case "openbsd":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. src/debug/elf/elf.go

    	ELFOSABI_LINUX      OSABI = 3   /* Linux */
    	ELFOSABI_HURD       OSABI = 4   /* Hurd */
    	ELFOSABI_86OPEN     OSABI = 5   /* 86Open common IA32 ABI */
    	ELFOSABI_SOLARIS    OSABI = 6   /* Solaris */
    	ELFOSABI_AIX        OSABI = 7   /* AIX */
    	ELFOSABI_IRIX       OSABI = 8   /* IRIX */
    	ELFOSABI_FREEBSD    OSABI = 9   /* FreeBSD */
    	ELFOSABI_TRU64      OSABI = 10  /* TRU64 UNIX */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    	if a.buildID != "" && cfg.BuildToolchainName == "gccgo" {
    		switch cfg.Goos {
    		case "aix", "android", "dragonfly", "freebsd", "illumos", "linux", "netbsd", "openbsd", "solaris":
    			asmfile, err := b.gccgoBuildIDFile(a)
    			if err != nil {
    				return err
    			}
    			ofiles, err := BuildToolchain.asm(b, a, []string{asmfile})
    			if err != nil {
    				return err
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    //
    // Using GOOS=android matches build tags and files as for GOOS=linux
    // in addition to android tags and files.
    //
    // Using GOOS=illumos matches build tags and files as for GOOS=solaris
    // in addition to illumos tags and files.
    //
    // Using GOOS=ios matches build tags and files as for GOOS=darwin
    // in addition to ios tags and files.
    //
    // The defined architecture feature build tags are:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top