Commit 3c4ebd20 authored by Cherry Zhang's avatar Cherry Zhang

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/22797Reviewed-by: 's avatarMinux Ma <minux@golang.org>
parent 34f97d28
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment