diff options
author | Mike Stump <mrs@apple.com> | 2006-12-08 23:54:21 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 2006-12-08 23:54:21 +0000 |
commit | 9a35ada53504bbf2a522c20303ccf606dd730307 (patch) | |
tree | 1c1c8ea15b95c3c6affc6b3856a93c448d654f4f /boehm-gc/include | |
parent | 920aeaf3da2eed578c4f2b73551a44a62b8329a3 (diff) | |
download | gcc-9a35ada53504bbf2a522c20303ccf606dd730307.zip gcc-9a35ada53504bbf2a522c20303ccf606dd730307.tar.gz gcc-9a35ada53504bbf2a522c20303ccf606dd730307.tar.bz2 |
configure.ac: Fix x86 darwin builds.
* configure.ac: Fix x86 darwin builds.
* darwin_stop_world.c: Likewise.
* include/private/gcconfig.h: Likewise.
* connfigure: Regenerate.
From-SVN: r119670
Diffstat (limited to 'boehm-gc/include')
-rw-r--r-- | boehm-gc/include/private/gcconfig.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/boehm-gc/include/private/gcconfig.h b/boehm-gc/include/private/gcconfig.h index 26db82e..e06a756 100644 --- a/boehm-gc/include/private/gcconfig.h +++ b/boehm-gc/include/private/gcconfig.h @@ -302,7 +302,7 @@ # if defined(__ppc__) || defined(__ppc64__) # define POWERPC # define mach_type_known -# elif defined(__i386__) +# elif defined(__i386__) || defined(__x86_64) # define I386 # define mach_type_known # endif @@ -787,7 +787,7 @@ # define DATAEND (_end) # endif # ifdef DARWIN -# ifdef __ppc64__ +# if defined(__ppc64__) || defined(__x86_64) # define ALIGNMENT 8 # define CPP_WORDSZ 64 # else |