Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for barcode (0.43 sec)

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

    		msect.flag = S_MOD_INIT_FUNC_POINTERS
    	}
    
    	// Some platforms such as watchOS and tvOS require binaries with
    	// bitcode enabled. The Go toolchain can't output bitcode, so use
    	// a marker section in the __LLVM segment, "__asm", to tell the Apple
    	// toolchain that the Go text came from assembler and thus has no
    	// bitcode. This is not true, but Kotlin/Native, Rust and Flutter
    	// are also using this trick.
    	if sect.Name == ".llvmasm" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  2. src/cmd/link/link_test.go

    		t.Skip("failed to locate appletvos SDK, skipping")
    	}
    	CC := []string{
    		"clang",
    		"-arch",
    		"arm64",
    		"-isysroot", strings.TrimSpace(string(sdkPath)),
    		"-mtvos-version-min=12.0",
    		"-fembed-bitcode",
    	}
    	CGO_LDFLAGS := []string{"-framework", "CoreFoundation"}
    	lib := filepath.Join("testdata", "testBuildFortvOS", "lib.go")
    	tmpDir := t.TempDir()
    
    	ar := filepath.Join(tmpDir, "lib.a")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    	switch ctxt.HeadType {
    	case objabi.Hdarwin:
    		if combineDwarf {
    			// Leave room for DWARF combining.
    			// -headerpad is incompatible with -fembed-bitcode.
    			argv = append(argv, "-Wl,-headerpad,1144")
    		}
    		if ctxt.DynlinkingGo() && buildcfg.GOOS != "ios" {
    			// -flat_namespace is deprecated on iOS.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	r0, _, _ := syscall.Syscall6(procGetAdaptersAddresses.Addr(), 5, uintptr(family), uintptr(flags), uintptr(reserved), uintptr(unsafe.Pointer(adapterAddresses)), uintptr(unsafe.Pointer(sizePointer)), 0)
    	if r0 != 0 {
    		errcode = syscall.Errno(r0)
    	}
    	return
    }
    
    func GetAdaptersInfo(ai *IpAdapterInfo, ol *uint32) (errcode error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
Back to top