cmd/link, runtime: add external linking support for linux/mips64x

Fixes #12560

Change-Id: Ic2004fc7b09f2dbbf83c41f8c6307757c0e1676d
Reviewed-on: https://go-review.googlesource.com/19803
Reviewed-by: Minux Ma <minux@golang.org>
This commit is contained in:
Cherry Zhang 2016-04-27 22:18:09 -04:00 committed by Minux Ma
parent b13b249f43
commit 073d292c45
6 changed files with 139 additions and 11 deletions

View file

@ -1298,6 +1298,8 @@ func hostlinkArchArgs() []string {
return []string{"-marm"}
case sys.ARM64:
// nothing needed
case '0':
return []string{"-mabi=64"}
}
return nil
}