From: Michael Hope Date: Fri, 23 Mar 2012 02:19:46 +0000 (+0000) Subject: backport: re PR pch/45979 (precompiled headers breakage on 2.6.36-rc Linux/ARM kernels) X-Git-Tag: releases/gcc-4.6.4~630 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e3aa172b575eb860838f2a448f4eec5a951cfe0e;p=thirdparty%2Fgcc.git backport: re PR pch/45979 (precompiled headers breakage on 2.6.36-rc Linux/ARM kernels) 2012-03-16 Michael Hope Backport from mainline 2011-05-05 Michael Hope PR pch/45979 * config/host-linux.c (TRY_EMPTY_VM_SPACE): Define for __ARM_EABI__ hosts. From-SVN: r185724 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4ade03cc6375..ffe5d0351da6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,12 @@ +2012-03-16 Michael Hope + + Backport from mainline + 2011-05-05 Michael Hope + + PR pch/45979 + * config/host-linux.c (TRY_EMPTY_VM_SPACE): Define for + __ARM_EABI__ hosts. + 2012-03-15 Chung-Lin Tang Backport from mainline diff --git a/gcc/config/host-linux.c b/gcc/config/host-linux.c index 47ce3ea90a7e..ec6105577a6e 100644 --- a/gcc/config/host-linux.c +++ b/gcc/config/host-linux.c @@ -84,6 +84,8 @@ # define TRY_EMPTY_VM_SPACE 0x60000000 #elif defined(__mc68000__) # define TRY_EMPTY_VM_SPACE 0x40000000 +#elif defined(__ARM_EABI__) +# define TRY_EMPTY_VM_SPACE 0x60000000 #else # define TRY_EMPTY_VM_SPACE 0 #endif