Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for IsOpenbsd (0.89 sec)

  1. src/internal/goos/zgoos_netbsd.go

    const IsDarwin = 0
    const IsDragonfly = 0
    const IsFreebsd = 0
    const IsHurd = 0
    const IsIllumos = 0
    const IsIos = 0
    const IsJs = 0
    const IsLinux = 0
    const IsNacl = 0
    const IsNetbsd = 1
    const IsOpenbsd = 0
    const IsPlan9 = 0
    const IsSolaris = 0
    const IsWasip1 = 0
    const IsWindows = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 455 bytes
    - Viewed (0)
  2. src/internal/goos/zgoos_plan9.go

    const IsDarwin = 0
    const IsDragonfly = 0
    const IsFreebsd = 0
    const IsHurd = 0
    const IsIllumos = 0
    const IsIos = 0
    const IsJs = 0
    const IsLinux = 0
    const IsNacl = 0
    const IsNetbsd = 0
    const IsOpenbsd = 0
    const IsPlan9 = 1
    const IsSolaris = 0
    const IsWasip1 = 0
    const IsWindows = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 453 bytes
    - Viewed (0)
  3. src/internal/goos/zgoos_hurd.go

    const IsDarwin = 0
    const IsDragonfly = 0
    const IsFreebsd = 0
    const IsHurd = 1
    const IsIllumos = 0
    const IsIos = 0
    const IsJs = 0
    const IsLinux = 0
    const IsNacl = 0
    const IsNetbsd = 0
    const IsOpenbsd = 0
    const IsPlan9 = 0
    const IsSolaris = 0
    const IsWasip1 = 0
    const IsWindows = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 451 bytes
    - Viewed (0)
  4. src/internal/goos/zgoos_illumos.go

    const IsDarwin = 0
    const IsDragonfly = 0
    const IsFreebsd = 0
    const IsHurd = 0
    const IsIllumos = 1
    const IsIos = 0
    const IsJs = 0
    const IsLinux = 0
    const IsNacl = 0
    const IsNetbsd = 0
    const IsOpenbsd = 0
    const IsPlan9 = 0
    const IsSolaris = 0
    const IsWasip1 = 0
    const IsWindows = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 457 bytes
    - Viewed (0)
  5. src/internal/goos/zgoos_js.go

    const IsDarwin = 0
    const IsDragonfly = 0
    const IsFreebsd = 0
    const IsHurd = 0
    const IsIllumos = 0
    const IsIos = 0
    const IsJs = 1
    const IsLinux = 0
    const IsNacl = 0
    const IsNetbsd = 0
    const IsOpenbsd = 0
    const IsPlan9 = 0
    const IsSolaris = 0
    const IsWasip1 = 0
    const IsWindows = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 447 bytes
    - Viewed (0)
  6. src/internal/goos/zgoos_wasip1.go

    const IsDarwin = 0
    const IsDragonfly = 0
    const IsFreebsd = 0
    const IsHurd = 0
    const IsIllumos = 0
    const IsIos = 0
    const IsJs = 0
    const IsLinux = 0
    const IsNacl = 0
    const IsNetbsd = 0
    const IsOpenbsd = 0
    const IsPlan9 = 0
    const IsSolaris = 0
    const IsWasip1 = 1
    const IsWindows = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 455 bytes
    - Viewed (0)
  7. src/internal/goos/zgoos_zos.go

    const IsDarwin = 0
    const IsDragonfly = 0
    const IsFreebsd = 0
    const IsHurd = 0
    const IsIllumos = 0
    const IsIos = 0
    const IsJs = 0
    const IsLinux = 0
    const IsNacl = 0
    const IsNetbsd = 0
    const IsOpenbsd = 0
    const IsPlan9 = 0
    const IsSolaris = 0
    const IsWasip1 = 0
    const IsWindows = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 449 bytes
    - Viewed (0)
  8. src/cmd/link/internal/mips64/asm.go

    		out.Write8(uint8(elf.R_MIPS_LO16))
    	case objabi.R_ADDRMIPSU:
    		out.Write8(uint8(elf.R_MIPS_HI16))
    	case objabi.R_ADDRMIPSTLS:
    		out.Write8(uint8(elf.R_MIPS_TLS_TPREL_LO16))
    		if ctxt.Target.IsOpenbsd() {
    			// OpenBSD mips64 does not currently offset TLS by 0x7000,
    			// as such we need to add this back to get the correct offset
    			// via the external linker.
    			addend += 0x7000
    		}
    	case objabi.R_CALLMIPS,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/target.go

    	t.mustSetHeadType()
    	return t.HeadType == objabi.Hsolaris
    }
    
    func (t *Target) IsNetbsd() bool {
    	t.mustSetHeadType()
    	return t.HeadType == objabi.Hnetbsd
    }
    
    func (t *Target) IsOpenbsd() bool {
    	t.mustSetHeadType()
    	return t.HeadType == objabi.Hopenbsd
    }
    
    func (t *Target) IsFreebsd() bool {
    	t.mustSetHeadType()
    	return t.HeadType == objabi.Hfreebsd
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 21:14:48 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/go.go

    	libs = nil
    	for _, lib := range libraries {
    		libs = append(libs, lib)
    	}
    	sort.Strings(libs)
    
    	return libs
    }
    
    func dedupLibraries(ctxt *Link, libs []string) []string {
    	if ctxt.Target.IsOpenbsd() {
    		return dedupLibrariesOpenBSD(ctxt, libs)
    	}
    	return libs
    }
    
    var seenlib = make(map[string]bool)
    
    func adddynlib(ctxt *Link, lib string) {
    	if seenlib[lib] || ctxt.LinkMode == LinkExternal {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top