Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TOOLEXEC_IMPORTPATH (0.23 sec)

  1. src/cmd/go/testdata/script/toolexec.txt

    [cgo] stderr -count=2 '^cgo'${GOEXE}' TOOLEXEC_IMPORTPATH="test/main/withcgo"$'
    [cgo] stderr -count=1 '^compile'${GOEXE}' TOOLEXEC_IMPORTPATH="test/main/withcgo"$'
    stderr -count=1 '^compile'${GOEXE}' TOOLEXEC_IMPORTPATH="test/main"$'
    stderr -count=1 '^link'${GOEXE}' TOOLEXEC_IMPORTPATH="test/main"$'
    
    # Test packages are a little bit trickier.
    # We have four variants of test/main, as reported by 'go list -test':
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/shell.go

    	cmd.Stderr = &buf
    	cleanup := passLongArgsInResponseFiles(cmd)
    	defer cleanup()
    	if dir != "." {
    		cmd.Dir = dir
    	}
    	cmd.Env = cmd.Environ() // Pre-allocate with correct PWD.
    
    	// Add the TOOLEXEC_IMPORTPATH environment variable for -toolexec tools.
    	// It doesn't really matter if -toolexec isn't being used.
    	// Note that a.Package.Desc is not really an import path,
    	// but this is consistent with 'go list -f {{.ImportPath}}'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/build.go

    	-toolexec 'cmd args'
    		a program to use to invoke toolchain programs like vet and asm.
    		For example, instead of running asm, the go command will run
    		'cmd args /path/to/asm <arguments for asm>'.
    		The TOOLEXEC_IMPORTPATH environment variable will be set,
    		matching 'go list -f {{.ImportPath}}' for the package being built.
    
    The -asmflags, -gccgoflags, -gcflags, and -ldflags flags accept a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    //	-toolexec 'cmd args'
    //		a program to use to invoke toolchain programs like vet and asm.
    //		For example, instead of running asm, the go command will run
    //		'cmd args /path/to/asm <arguments for asm>'.
    //		The TOOLEXEC_IMPORTPATH environment variable will be set,
    //		matching 'go list -f {{.ImportPath}}' for the package being built.
    //
    // The -asmflags, -gccgoflags, -gcflags, and -ldflags flags accept a
    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