Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for basec (0.32 sec)

  1. src/cmd/cgo/gcc.go

    // #defines that gcc encountered while processing the input
    // and its included files.
    func (p *Package) gccDefines(stdin []byte) string {
    	base := append(gccBaseCmd, "-E", "-dM", "-xc")
    	base = append(base, p.gccMachine()...)
    	stdout, _ := runGcc(stdin, append(append(base, p.GccOptions...), "-"))
    	return stdout
    }
    
    // gccErrors runs gcc over the C program stdin and returns
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
Back to top