mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
Revert "cmd/ebitenmobile: Use the better way to go-get dependencies"
This reverts commit ad2d356262
.
Reason: Installation failed on Windows.
Closes #1493
This commit is contained in:
parent
c593c3f266
commit
115c11232e
@ -104,9 +104,11 @@ func prepareGomobileCommands() error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
// To record gomobile and its dependencies to go.sum for Go 1.16 and later, go-get golang.org/x/mobile with `...` (#1487).
|
// 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).
|
||||||
// Note that `go mod tidy` doesn't work since this removes all the indirect imports.
|
// Note that `go mod tidy` doesn't work since this removes all the indirect imports.
|
||||||
if err := runGo("get", "golang.org/x/mobile/...@"+gomobileHash); err != nil {
|
if err := runGo("get", "golang.org/x/mobile/cmd/gomobile@"+gomobileHash); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if localgm := os.Getenv("EBITENMOBILE_GOMOBILE"); localgm != "" {
|
if localgm := os.Getenv("EBITENMOBILE_GOMOBILE"); localgm != "" {
|
||||||
|
Loading…
Reference in New Issue
Block a user