diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2016-11-01 21:45:32 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2016-11-01 21:45:32 +0000 |
commit | 307dde6fcc0fdf813087212705f84370b1a2305b (patch) | |
tree | 46b49077867f7a5a409b0ff49e1b767e1ff34a82 | |
parent | 5b7c051940e69046151e3094b56f1b13e873840e (diff) | |
download | gcc-307dde6fcc0fdf813087212705f84370b1a2305b.zip gcc-307dde6fcc0fdf813087212705f84370b1a2305b.tar.gz gcc-307dde6fcc0fdf813087212705f84370b1a2305b.tar.bz2 |
libgo: fix GOARCH_PHYSPAGESIZE for ia64
From Andreas Schwab.
Reviewed-on: https://go-review.googlesource.com/32537
From-SVN: r241757
-rw-r--r-- | gcc/go/gofrontend/MERGE | 2 | ||||
-rwxr-xr-x | libgo/configure | 2 | ||||
-rw-r--r-- | libgo/configure.ac | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/gcc/go/gofrontend/MERGE b/gcc/go/gofrontend/MERGE index db435a2..7868369 100644 --- a/gcc/go/gofrontend/MERGE +++ b/gcc/go/gofrontend/MERGE @@ -1,4 +1,4 @@ -069ed35ecbefd2f138ea3132a557ad23a6936a45 +150bca67d8bb4b23009f53ba06e85e306e3960d8 The first line of this file holds the git revision number of the last merge done from the gofrontend repository. diff --git a/libgo/configure b/libgo/configure index 3c866f7..7a9df58 100755 --- a/libgo/configure +++ b/libgo/configure @@ -13677,7 +13677,7 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext GOARCH=ia64 GOARCH_FAMILY=IA64 GOARCH_CACHELINESIZE=16384 - GOARCH_PHYSPAGESIZE=8192 + GOARCH_PHYSPAGESIZE=65536 ;; m68k*-*-*) GOARCH=m68k diff --git a/libgo/configure.ac b/libgo/configure.ac index 2951392..ed2edd3 100644 --- a/libgo/configure.ac +++ b/libgo/configure.ac @@ -254,7 +254,7 @@ GOARCH_HUGEPAGESIZE="1 << 21" GOARCH=ia64 GOARCH_FAMILY=IA64 GOARCH_CACHELINESIZE=16384 - GOARCH_PHYSPAGESIZE=8192 + GOARCH_PHYSPAGESIZE=65536 ;; m68k*-*-*) GOARCH=m68k |