2019-08-17 12:00:37 +02:00
|
|
|
// Copyright 2019 The Ebiten Authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"path/filepath"
|
2020-03-04 17:05:53 +01:00
|
|
|
"runtime"
|
2019-08-17 12:00:37 +02:00
|
|
|
)
|
|
|
|
|
2022-08-08 04:38:10 +02:00
|
|
|
const gomobileHash = "aaac322e2105241d1ac9a25b03d4e916ac6e42c6"
|
2019-08-17 12:00:37 +02:00
|
|
|
|
2019-08-18 10:11:53 +02:00
|
|
|
func runCommand(command string, args []string, env []string) error {
|
2019-08-17 12:00:37 +02:00
|
|
|
if buildX || buildN {
|
|
|
|
for _, e := range env {
|
|
|
|
fmt.Printf("%s ", e)
|
|
|
|
}
|
2019-08-18 10:11:53 +02:00
|
|
|
fmt.Print(command)
|
2019-08-17 12:00:37 +02:00
|
|
|
for _, arg := range args {
|
|
|
|
fmt.Printf(" %s", arg)
|
|
|
|
}
|
|
|
|
fmt.Println()
|
|
|
|
}
|
|
|
|
|
|
|
|
if buildN {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-08-18 10:11:53 +02:00
|
|
|
cmd := exec.Command(command, args...)
|
|
|
|
if len(env) > 0 {
|
|
|
|
cmd.Env = append(os.Environ(), env...)
|
|
|
|
}
|
2019-08-17 12:00:37 +02:00
|
|
|
if out, err := cmd.CombinedOutput(); err != nil {
|
2019-08-18 10:11:53 +02:00
|
|
|
return fmt.Errorf("%s %v failed: %v\n%v", command, args, string(out), err)
|
2019-08-17 12:00:37 +02:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-06-09 18:03:25 +02:00
|
|
|
func removeAll(path string) error {
|
|
|
|
if buildX || buildN {
|
|
|
|
fmt.Printf("rm -rf %s\n", path)
|
|
|
|
}
|
|
|
|
if buildN {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return os.RemoveAll(path)
|
|
|
|
}
|
|
|
|
|
2019-08-18 10:11:53 +02:00
|
|
|
func runGo(args ...string) error {
|
2022-01-03 09:29:43 +01:00
|
|
|
// TODO: Remove this after Ebiten drops the support of Go 1.15 and older.
|
|
|
|
// GO111MODULE is on by default as of Go 1.16.
|
2019-08-18 10:11:53 +02:00
|
|
|
env := []string{
|
|
|
|
"GO111MODULE=on",
|
|
|
|
}
|
2020-01-24 14:50:48 +01:00
|
|
|
return runCommand("go", args, env)
|
2019-08-18 10:11:53 +02:00
|
|
|
}
|
|
|
|
|
2020-03-04 17:05:53 +01:00
|
|
|
// exe adds the .exe extension to the given filename.
|
|
|
|
// Without .exe, the executable won't be found by exec.LookPath on Windows (#1096).
|
|
|
|
func exe(filename string) string {
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
return filename + ".exe"
|
|
|
|
}
|
|
|
|
return filename
|
|
|
|
}
|
|
|
|
|
2021-06-09 18:03:25 +02:00
|
|
|
func prepareGomobileCommands() (string, error) {
|
2019-08-17 12:00:37 +02:00
|
|
|
tmp, err := ioutil.TempDir("", "ebitenmobile-")
|
|
|
|
if err != nil {
|
2021-06-09 18:03:25 +02:00
|
|
|
return "", err
|
2019-08-17 12:00:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
newpath := filepath.Join(tmp, "bin")
|
|
|
|
if path := os.Getenv("PATH"); path != "" {
|
|
|
|
newpath += string(filepath.ListSeparator) + path
|
|
|
|
}
|
2019-08-18 10:11:53 +02:00
|
|
|
if buildX || buildN {
|
|
|
|
fmt.Printf("PATH=%s\n", newpath)
|
|
|
|
}
|
|
|
|
if !buildN {
|
2021-06-09 14:33:20 +02:00
|
|
|
if err := os.Setenv("PATH", newpath); err != nil {
|
2021-06-09 18:03:25 +02:00
|
|
|
return tmp, err
|
2021-06-09 14:33:20 +02:00
|
|
|
}
|
2019-08-18 10:11:53 +02:00
|
|
|
}
|
2019-08-17 12:00:37 +02:00
|
|
|
|
|
|
|
pwd, err := os.Getwd()
|
|
|
|
if err != nil {
|
2021-06-09 18:03:25 +02:00
|
|
|
return tmp, err
|
2019-08-17 12:00:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// cd
|
|
|
|
if buildX {
|
|
|
|
fmt.Printf("cd %s\n", tmp)
|
|
|
|
}
|
|
|
|
if err := os.Chdir(tmp); err != nil {
|
2021-06-09 18:03:25 +02:00
|
|
|
return tmp, err
|
2019-08-17 12:00:37 +02:00
|
|
|
}
|
|
|
|
defer func() {
|
|
|
|
os.Chdir(pwd)
|
|
|
|
}()
|
|
|
|
|
2021-06-10 18:03:35 +02:00
|
|
|
const (
|
|
|
|
modname = "ebitenmobiletemporary"
|
|
|
|
buildtags = "//go:build tools" +
|
|
|
|
"\n// +build tools"
|
|
|
|
)
|
2021-06-09 15:45:16 +02:00
|
|
|
if err := runGo("mod", "init", modname); err != nil {
|
2021-06-09 18:03:25 +02:00
|
|
|
return tmp, err
|
2021-06-09 15:45:16 +02:00
|
|
|
}
|
2021-06-10 18:03:35 +02:00
|
|
|
if err := ioutil.WriteFile("tools.go", []byte(fmt.Sprintf(`%s
|
2021-06-09 15:45:16 +02:00
|
|
|
|
|
|
|
package %s
|
|
|
|
|
|
|
|
import (
|
|
|
|
_ "golang.org/x/mobile/cmd/gobind"
|
|
|
|
_ "golang.org/x/mobile/cmd/gomobile"
|
|
|
|
)
|
2021-06-10 18:03:35 +02:00
|
|
|
`, buildtags, modname)), 0644); err != nil {
|
2021-06-09 18:03:25 +02:00
|
|
|
return tmp, err
|
2019-08-17 12:00:37 +02:00
|
|
|
}
|
2021-02-09 18:03:06 +01:00
|
|
|
|
2021-02-14 10:24:54 +01:00
|
|
|
// To record gomobile to go.sum for Go 1.16 and later, go-get gomobile instaed of golang.org/x/mobile (#1487).
|
|
|
|
// This also records gobind as gomobile depends on gobind indirectly.
|
|
|
|
// Using `...` doesn't work on Windows since mobile/internal/mobileinit cannot be compiled on Windows w/o Cgo (#1493).
|
|
|
|
if err := runGo("get", "golang.org/x/mobile/cmd/gomobile@"+gomobileHash); err != nil {
|
2021-06-09 18:03:25 +02:00
|
|
|
return tmp, err
|
2019-08-17 12:00:37 +02:00
|
|
|
}
|
2020-07-24 20:00:52 +02:00
|
|
|
if localgm := os.Getenv("EBITENMOBILE_GOMOBILE"); localgm != "" {
|
|
|
|
if !filepath.IsAbs(localgm) {
|
|
|
|
localgm = filepath.Join(pwd, localgm)
|
|
|
|
}
|
|
|
|
if err := runGo("mod", "edit", "-replace=golang.org/x/mobile="+localgm); err != nil {
|
2021-06-09 18:03:25 +02:00
|
|
|
return tmp, err
|
2020-07-24 20:00:52 +02:00
|
|
|
}
|
|
|
|
}
|
2021-06-09 15:45:16 +02:00
|
|
|
if err := runGo("mod", "tidy"); err != nil {
|
2021-06-09 18:03:25 +02:00
|
|
|
return tmp, err
|
2021-06-09 15:45:16 +02:00
|
|
|
}
|
2020-03-04 17:05:53 +01:00
|
|
|
if err := runGo("build", "-o", exe(filepath.Join("bin", "gomobile")), "golang.org/x/mobile/cmd/gomobile"); err != nil {
|
2021-06-09 18:03:25 +02:00
|
|
|
return tmp, err
|
2019-08-17 12:00:37 +02:00
|
|
|
}
|
2020-03-04 17:05:53 +01:00
|
|
|
if err := runGo("build", "-o", exe(filepath.Join("bin", "gobind-original")), "golang.org/x/mobile/cmd/gobind"); err != nil {
|
2021-06-09 18:03:25 +02:00
|
|
|
return tmp, err
|
2019-08-17 12:00:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := os.Mkdir("src", 0755); err != nil {
|
2021-06-09 18:03:25 +02:00
|
|
|
return tmp, err
|
2019-08-17 12:00:37 +02:00
|
|
|
}
|
|
|
|
if err := ioutil.WriteFile(filepath.Join("src", "gobind.go"), gobindsrc, 0644); err != nil {
|
2021-06-09 18:03:25 +02:00
|
|
|
return tmp, err
|
2019-08-17 12:00:37 +02:00
|
|
|
}
|
|
|
|
|
2020-03-04 17:05:53 +01:00
|
|
|
if err := runGo("build", "-o", exe(filepath.Join("bin", "gobind")), "-tags", "ebitenmobilegobind", filepath.Join("src", "gobind.go")); err != nil {
|
2021-06-09 18:03:25 +02:00
|
|
|
return tmp, err
|
2019-08-17 12:00:37 +02:00
|
|
|
}
|
|
|
|
|
2021-06-09 05:57:29 +02:00
|
|
|
if err := runCommand("gomobile", []string{"init"}, nil); err != nil {
|
2021-06-09 18:03:25 +02:00
|
|
|
return tmp, err
|
2021-06-09 05:57:29 +02:00
|
|
|
}
|
2019-08-17 12:00:37 +02:00
|
|
|
|
2021-06-09 18:03:25 +02:00
|
|
|
return tmp, nil
|
2019-08-17 12:00:37 +02:00
|
|
|
}
|