Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for mkzdefaultcc (1.56 sec)

  1. src/cmd/dist/build.go

    var gentab = []struct {
    	pkg  string // Relative to $GOROOT/src
    	file string
    	gen  func(dir, file string)
    }{
    	{"go/build", "zcgo.go", mkzcgo},
    	{"cmd/go/internal/cfg", "zdefaultcc.go", mkzdefaultcc},
    	{"runtime/internal/sys", "zversion.go", mkzversion},
    	{"time/tzdata", "zzipdata.go", mktzdata},
    }
    
    // installed maps from a dir name (as given to install) to a chan
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    }
    
    // checkGCCBaseCmd returns the start of the compiler command line.
    // It uses $CC if set, or else $GCC, or else the compiler recorded
    // during the initial build as defaultCC.
    // defaultCC is defined in zdefaultcc.go, written by cmd/dist.
    //
    // The compiler command line is split into arguments on whitespace. Quotes
    // are understood, so arguments may contain whitespace.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top