From: Anthony Green Date: Sun, 21 Sep 2003 00:15:52 +0000 (+0000) Subject: Fix arm-elf support. X-Git-Tag: releases/gcc-3.4.0~3614 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0722cb666cc4afa628399c3b56645a3bbae61c8d;p=thirdparty%2Fgcc.git Fix arm-elf support. From-SVN: r71613 --- diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index f0918f67603c..9a4df519a37f 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,8 @@ +2003-09-20 + + * include/private/gcconfig.h: Don't check for __XSCALE__. Instead + check for __arm__ or __thumb__. + 2003-09-09 Alan Modra * configure: Regenerate. diff --git a/boehm-gc/include/private/gcconfig.h b/boehm-gc/include/private/gcconfig.h index 29dab213815d..45386d785708 100644 --- a/boehm-gc/include/private/gcconfig.h +++ b/boehm-gc/include/private/gcconfig.h @@ -60,7 +60,7 @@ # endif /* Determine the machine type: */ -# if defined(__XSCALE__) +# if defined(__arm__) || defined(__thumb__) # define ARM32 # if !defined(LINUX) # define NOSYS