From 020b652964a934a9e1c063ef17c86383100b66c5 Mon Sep 17 00:00:00 2001 From: green Date: Sun, 21 Sep 2003 00:15:52 +0000 Subject: [PATCH] Fix arm-elf support. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@71613 138bc75d-0d04-0410-961f-82ee72b054a4 --- ChangeLog | 5 +++++ include/private/gcconfig.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f0918f67..9a4df519 100644 --- a/ChangeLog +++ b/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/include/private/gcconfig.h b/include/private/gcconfig.h index 29dab213..45386d78 100644 --- a/include/private/gcconfig.h +++ b/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 -- 2.40.0