Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for grc (0.01 sec)

  1. src/cmd/pack/pack.go

    )
    
    // setOp parses the operation string (first argument).
    func setOp(arg string) {
    	// Recognize 'go tool pack grc' because that was the
    	// formerly canonical way to build a new archive
    	// from a set of input files. Accepting it keeps old
    	// build systems working with both Go 1.2 and Go 1.3.
    	if arg == "grc" {
    		arg = "c"
    	}
    
    	for _, r := range arg {
    		switch r {
    		case 'c', 'p', 'r', 't', 'x':
    			if op != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top