Skip to content

Commit

Permalink
cmd/fyne: remove arm from ios target
Browse files Browse the repository at this point in the history
  • Loading branch information
changkun committed Sep 26, 2021
1 parent 8379d88 commit 719e20f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/fyne/internal/mobile/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ func runBuildImpl(cmd *command) (*packages.Package, error) {
}
if buildRelease {
if len(allArchs["ios"]) > 2 {
targetArchs = []string{"arm", "arm64"}
targetArchs = []string{"arm64"}
} else {
targetArchs = []string{"arm64"}
}
Expand Down
2 changes: 1 addition & 1 deletion cmd/fyne/internal/mobile/env.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ func envInit() (err error) {
}
}
if before115 {
allArchs["ios"] = []string{"arm64", "amd64", "arm"}
allArchs["ios"] = []string{"arm64", "amd64"}
}

// TODO re-enable once we find out what broke after September event 2020
Expand Down

0 comments on commit 719e20f

Please sign in to comment.