Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getCCAndCCFLAGS (0.21 sec)

  1. src/cmd/link/elf_test.go

    	"debug/elf"
    	"fmt"
    	"internal/platform"
    	"internal/testenv"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"runtime"
    	"strings"
    	"sync"
    	"testing"
    	"text/template"
    )
    
    func getCCAndCCFLAGS(t *testing.T, env []string) (string, []string) {
    	goTool := testenv.GoToolPath(t)
    	cmd := testenv.Command(t, goTool, "env", "CC")
    	cmd.Env = env
    	ccb, err := cmd.Output()
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 16:34:01 UTC 2023
    - 13.7K bytes
    - Viewed (0)
Back to top