Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for buildFlags (0.1 sec)

  1. src/cmd/go/internal/work/exec.go

    	if cppflags, err = buildFlags("CPPFLAGS", "", p.CgoCPPFLAGS, checkCompilerFlags); err != nil {
    		return
    	}
    	if cflags, err = buildFlags("CFLAGS", DefaultCFlags, p.CgoCFLAGS, checkCompilerFlags); err != nil {
    		return
    	}
    	if cxxflags, err = buildFlags("CXXFLAGS", DefaultCFlags, p.CgoCXXFLAGS, checkCompilerFlags); err != nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //	    CgoEnabled    bool     // whether cgo can be used
    //	    UseAllFiles   bool     // use files regardless of //go:build lines, file names
    //	    Compiler      string   // compiler to assume when computing target paths
    //	    BuildTags     []string // build constraints to match in //go:build lines
    //	    ToolTags      []string // toolchain-specific build constraints
    //	    ReleaseTags   []string // releases the current release is compatible with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    	}
    	if cfg.BuildMSan {
    		appendSetting("-msan", "true")
    	}
    	// N.B. -pgo added later by setPGOProfilePath.
    	if cfg.BuildRace {
    		appendSetting("-race", "true")
    	}
    	if tags := cfg.BuildContext.BuildTags; len(tags) > 0 {
    		appendSetting("-tags", strings.Join(tags, ","))
    	}
    	if cfg.BuildTrimpath {
    		appendSetting("-trimpath", "true")
    	}
    	if p.DefaultGODEBUG != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top