Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for gfortran (0.18 sec)

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

    	}
    
    	// Likewise for Fortran, except there are many Fortran compilers.
    	// Support gfortran out of the box and let others pass the correct link options
    	// via CGO_LDFLAGS
    	if len(ffiles) > 0 {
    		fc := cfg.Getenv("FC")
    		if fc == "" {
    			fc = "gfortran"
    		}
    		if strings.Contains(fc, "gfortran") {
    			cgoLDFLAGS = append(cgoLDFLAGS, "-lgfortran")
    		}
    	}
    
    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/internal/load/pkg.go

    	MFiles            []string `json:",omitempty"` // .m source files
    	HFiles            []string `json:",omitempty"` // .h, .hh, .hpp and .hxx source files
    	FFiles            []string `json:",omitempty"` // .f, .F, .for and .f90 Fortran source files
    	SFiles            []string `json:",omitempty"` // .s source files
    	SwigFiles         []string `json:",omitempty"` // .swig files
    	SwigCXXFiles      []string `json:",omitempty"` // .swigcxx files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //		Like CGO_CFLAGS, CGO_CFLAGS_ALLOW, and CGO_CFLAGS_DISALLOW,
    //		but for the Fortran compiler.
    //	CGO_LDFLAGS, CGO_LDFLAGS_ALLOW, CGO_LDFLAGS_DISALLOW
    //		Like CGO_CFLAGS, CGO_CFLAGS_ALLOW, and CGO_CFLAGS_DISALLOW,
    //		but for the linker.
    //	CXX
    //		The command to use to compile C++ code.
    //	FC
    //		The command to use to compile Fortran code.
    //	PKG_CONFIG
    //		Path to pkg-config tool.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top