diff options
author | Stan Shebs <shebs@apple.com> | 2001-04-28 22:18:06 +0000 |
---|---|---|
committer | Stan Shebs <shebs@gcc.gnu.org> | 2001-04-28 22:18:06 +0000 |
commit | f37f462aa63f3290f973f7b30288ea70373969a8 (patch) | |
tree | 5b71d6f7dfe9e8227e12ba350d17e87671731377 | |
parent | 141e454b1e21d8a832fe55f731f5f516278b54df (diff) | |
download | gcc-f37f462aa63f3290f973f7b30288ea70373969a8.zip gcc-f37f462aa63f3290f973f7b30288ea70373969a8.tar.gz gcc-f37f462aa63f3290f973f7b30288ea70373969a8.tar.bz2 |
darwin.h (STANDARD_EXEC_PREFIX): Don't define.
* config/darwin.h (STANDARD_EXEC_PREFIX): Don't define.
(NEXT_OBJC_RUNTIME): Define.
From-SVN: r41665
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/darwin.h | 13 |
2 files changed, 14 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c15c7ff..dc3261a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-04-28 Stan Shebs <shebs@apple.com> + + * config/darwin.h (STANDARD_EXEC_PREFIX): Don't define. + (NEXT_OBJC_RUNTIME): Define. + Sat Apr 28 21:02:58 CEST 2001 Jan Hubicka <jh@suse.cz> * rtl.h (simplify_gen_relational): Add cmp_mode parameter. diff --git a/gcc/config/darwin.h b/gcc/config/darwin.h index 269d78c..fa90241 100644 --- a/gcc/config/darwin.h +++ b/gcc/config/darwin.h @@ -30,10 +30,10 @@ Boston, MA 02111-1307, USA. */ /* Although NeXT ran on many different architectures, as of Jan 2001 the only supported Darwin targets are PowerPC and x86. */ -/* Make the compiler look here for standard stuff. */ - -#undef STANDARD_EXEC_PREFIX -#define STANDARD_EXEC_PREFIX "/usr/libexec/" +/* Technically, STANDARD_EXEC_PREFIX should be /usr/libexec/, but in + practice this makes it hard to install new compilers elsewhere, so + leave it undefined and expect system builders to set configure args + correctly. */ /* Name of the command that invokes the compiler - used in g++.c. */ @@ -70,6 +70,11 @@ Boston, MA 02111-1307, USA. */ #undef WCHAR_TYPE_SIZE #define WCHAR_TYPE_SIZE 32 +/* Default to using the NeXT-style runtime, since that's what is + pre-installed on Darwin systems. */ + +#define NEXT_OBJC_RUNTIME + /* Don't default to pcc-struct-return, because gcc is the only compiler, and we want to retain compatibility with older gcc versions. */ |