|
|
@ -107,14 +107,14 @@ func main1() int {
|
|
|
|
|
|
|
|
|
|
|
|
func mainErr(args []string) error {
|
|
|
|
func mainErr(args []string) error {
|
|
|
|
// If we recognise an argument, we're not running within -toolexec.
|
|
|
|
// If we recognise an argument, we're not running within -toolexec.
|
|
|
|
switch args[0] {
|
|
|
|
switch cmd := args[0]; cmd {
|
|
|
|
case "build":
|
|
|
|
case "build":
|
|
|
|
execPath, err := os.Executable()
|
|
|
|
execPath, err := os.Executable()
|
|
|
|
if err != nil {
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
goArgs := []string{
|
|
|
|
goArgs := []string{
|
|
|
|
"build",
|
|
|
|
cmd,
|
|
|
|
"-a",
|
|
|
|
"-a",
|
|
|
|
"-trimpath",
|
|
|
|
"-trimpath",
|
|
|
|
"-toolexec=" + execPath,
|
|
|
|
"-toolexec=" + execPath,
|
|
|
@ -126,6 +126,11 @@ func mainErr(args []string) error {
|
|
|
|
cmd.Stderr = os.Stderr
|
|
|
|
cmd.Stderr = os.Stderr
|
|
|
|
return cmd.Run()
|
|
|
|
return cmd.Run()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !filepath.IsAbs(args[0]) {
|
|
|
|
|
|
|
|
// -toolexec gives us an absolute path to the tool binary to
|
|
|
|
|
|
|
|
// run, so this is most likely misuse of garble by a user.
|
|
|
|
|
|
|
|
return fmt.Errorf("unknown command: %q", args[0])
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
_, tool := filepath.Split(args[0])
|
|
|
|
_, tool := filepath.Split(args[0])
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|