Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for barcode (0.07 sec)

  1. src/cmd/asm/internal/asm/parse.go

    	for {
    		tok := p.lex.Next()
    		if tok == lex.BuildComment {
    			if p.sawCode {
    				p.errorf("misplaced //go:build comment")
    			}
    			continue
    		}
    		if tok != '\n' {
    			p.sawCode = true
    		}
    		if tok == '#' {
    			// A leftover wisp of a #include/#define/etc,
    			// to let us know that p.sawCode should be true now.
    			// Otherwise ignored.
    			continue
    		}
    		return tok
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
Back to top