mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
cmd/link: fix external linker argument for mips64
I overlooked it when rebasing CL 19803. Change-Id: Ife9d6bcc6a772715d137af903c64bafac0cdb216 Reviewed-on: https://go-review.googlesource.com/22797 Reviewed-by: Minux Ma <minux@golang.org>
This commit is contained in:
parent
34f97d28d2
commit
3c4ebd2023
1 changed files with 1 additions and 1 deletions
|
|
@ -1302,7 +1302,7 @@ func hostlinkArchArgs() []string {
|
|||
return []string{"-marm"}
|
||||
case sys.ARM64:
|
||||
// nothing needed
|
||||
case '0':
|
||||
case sys.MIPS64:
|
||||
return []string{"-mabi=64"}
|
||||
}
|
||||
return nil
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue