Merge pull request #2867 from alexrp/sgen-block-size-ppc
authormonojenkins <jo.shields+jenkins@xamarin.com>
Mon, 11 Apr 2016 16:15:24 +0000 (17:15 +0100)
committermonojenkins <jo.shields+jenkins@xamarin.com>
Mon, 11 Apr 2016 16:15:24 +0000 (17:15 +0100)
commit6bf65f009aaf2ec1e7657c24a3a7d33797380d19
tree8ed0c255f40c26abf2bfd117127fc1ef4ceb391e
parentea8f09a1d5eb7d700c5ff95e71c4d651d8564fa6
parentbe104078673d2202c5cce85e81a3691b24265a68
Merge pull request #2867 from alexrp/sgen-block-size-ppc

[sgen] Set ARCH_MIN_MS_BLOCK_SIZE to 64k on both ppc32 and ppc64.

This fixes a problem that was happening on Debian ppc32 build machines. Since
they are set up as a 32-bit userland on a 64-bit kernel, Mono would be compiled
with an ARCH_MIN_MS_BLOCK_SIZE value of 16k. However, at runtime, the system
page size would be 64k (due to the 64-bit kernel with PPC_64K_PAGES set).

Signed-off-by: `Alex Rønne Petersen <alexrp@xamarin.com>`