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:
Cherry Zhang 2016-05-04 21:38:45 -07:00
parent 34f97d28d2
commit 3c4ebd2023

View file

@ -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