Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/go/alldocs.go

    //		from appearing in #cgo CFLAGS source code directives.
    //		Does not apply to the CGO_CFLAGS environment variable.
    //	CGO_CPPFLAGS, CGO_CPPFLAGS_ALLOW, CGO_CPPFLAGS_DISALLOW
    //		Like CGO_CFLAGS, CGO_CFLAGS_ALLOW, and CGO_CFLAGS_DISALLOW,
    //		but for the C preprocessor.
    //	CGO_CXXFLAGS, CGO_CXXFLAGS_ALLOW, CGO_CXXFLAGS_DISALLOW
    //		Like CGO_CFLAGS, CGO_CFLAGS_ALLOW, and CGO_CFLAGS_DISALLOW,
    //		but for the C++ compiler.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    	// documented (although coming up with a simple explanation of the
    	// flag might be challenging). For more context see issues #58619,
    	// #58620, and #58848.
    	flagSources := []string{"CGO_CFLAGS", "CGO_CXXFLAGS", "CGO_FFLAGS"}
    	flagLists := [][]string{cgoCFLAGS, cgoCXXFLAGS, cgoFFLAGS}
    	if flagsNotCompatibleWithInternalLinking(flagSources, flagLists) {
    		tokenFile := objdir + "preferlinkext"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    	//
    	// TODO(bcmills): perhaps we could at least parse the flags and stamp the
    	// subset of flags that are known not to be paths?
    	if cfg.BuildContext.CgoEnabled && !cfg.BuildTrimpath {
    		for _, name := range []string{"CGO_CFLAGS", "CGO_CPPFLAGS", "CGO_CXXFLAGS", "CGO_LDFLAGS"} {
    			appendSetting(name, cfg.Getenv(name))
    		}
    	}
    	appendSetting("GOARCH", cfg.BuildContext.GOARCH)
    	if cfg.RawGOEXPERIMENT != "" {
    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