mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-26 03:38:55 +01:00
cmd/ebitenmobile: Run gomobile init
This commit is contained in:
parent
e735e26450
commit
2ff0ccf4cc
@ -24,16 +24,12 @@ import (
|
||||
|
||||
const gomobileHash = "597adff16ade9d88626f8caea514bb189b8c74ee"
|
||||
|
||||
func runGo(args ...string) error {
|
||||
env := []string{
|
||||
"GO111MODULE=on",
|
||||
}
|
||||
|
||||
func runCommand(command string, args []string, env []string) error {
|
||||
if buildX || buildN {
|
||||
for _, e := range env {
|
||||
fmt.Printf("%s ", e)
|
||||
}
|
||||
fmt.Print("go")
|
||||
fmt.Print(command)
|
||||
for _, arg := range args {
|
||||
fmt.Printf(" %s", arg)
|
||||
}
|
||||
@ -44,14 +40,23 @@ func runGo(args ...string) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
cmd := exec.Command("go", args...)
|
||||
cmd := exec.Command(command, args...)
|
||||
if len(env) > 0 {
|
||||
cmd.Env = append(os.Environ(), env...)
|
||||
}
|
||||
if out, err := cmd.CombinedOutput(); err != nil {
|
||||
return fmt.Errorf("go %v failed: %v\n%v", args, string(out), err)
|
||||
return fmt.Errorf("%s %v failed: %v\n%v", command, args, string(out), err)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func runGo(args ...string) error {
|
||||
env := []string{
|
||||
"GO111MODULE=on",
|
||||
}
|
||||
return runCommand("go", args, env)
|
||||
}
|
||||
|
||||
func prepareGomobileCommands() error {
|
||||
tmp, err := ioutil.TempDir("", "ebitenmobile-")
|
||||
if err != nil {
|
||||
@ -62,7 +67,12 @@ func prepareGomobileCommands() error {
|
||||
if path := os.Getenv("PATH"); path != "" {
|
||||
newpath += string(filepath.ListSeparator) + path
|
||||
}
|
||||
if buildX || buildN {
|
||||
fmt.Printf("PATH=%s\n", newpath)
|
||||
}
|
||||
if !buildN {
|
||||
os.Setenv("PATH", newpath)
|
||||
}
|
||||
|
||||
pwd, err := os.Getwd()
|
||||
if err != nil {
|
||||
@ -104,7 +114,9 @@ func prepareGomobileCommands() error {
|
||||
return err
|
||||
}
|
||||
|
||||
// TODO: Create a gobind wrapper
|
||||
if err := runCommand("gomobile", []string{"init"}, nil); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user