2017-07-25 15:46:40 -06:00
|
|
|
// Copyright 2017 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2017-11-29 12:51:57 -07:00
|
|
|
// +build !plan9
|
|
|
|
|
2017-07-25 15:46:40 -06:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2017-07-29 13:51:58 -06:00
|
|
|
"context"
|
2017-07-25 15:46:40 -06:00
|
|
|
"os/exec"
|
|
|
|
"runtime"
|
2017-07-29 13:51:58 -06:00
|
|
|
"strings"
|
2017-07-25 15:46:40 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
// arch contains either amd64 or 386.
|
|
|
|
var arch = func() string {
|
|
|
|
cmd := exec.Command("uname", "-m") // "x86_64"
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
cmd = exec.Command("powershell", "-command", "(Get-WmiObject -Class Win32_ComputerSystem).SystemType") // "x64-based PC"
|
|
|
|
}
|
|
|
|
|
|
|
|
out, err := cmd.Output()
|
|
|
|
if err != nil {
|
|
|
|
// a sensible default?
|
|
|
|
return "amd64"
|
|
|
|
}
|
|
|
|
if bytes.Contains(out, []byte("64")) {
|
|
|
|
return "amd64"
|
|
|
|
}
|
|
|
|
return "386"
|
|
|
|
}()
|
2017-07-29 13:51:58 -06:00
|
|
|
|
|
|
|
func findGo(ctx context.Context, cmd string) (string, error) {
|
|
|
|
out, err := exec.CommandContext(ctx, cmd, "go").CombinedOutput()
|
|
|
|
return strings.TrimSpace(string(out)), err
|
|
|
|
}
|