diff options
author | obrien <obrien@FreeBSD.org> | 1999-07-02 19:26:45 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1999-07-02 19:26:45 +0000 |
commit | 972ce87b94f74b37945975c81ff92ac6a6949416 (patch) | |
tree | 68faada6ce114d18105c8a6121efabce6ad64177 /contrib | |
parent | 1b821b7e71e176ceb4213eef2476c0e44df57e19 (diff) | |
download | FreeBSD-src-972ce87b94f74b37945975c81ff92ac6a6949416.zip FreeBSD-src-972ce87b94f74b37945975c81ff92ac6a6949416.tar.gz |
* The OBSTACK_CHUNK_SIZE #define was in the "Code generation parameters"
section rather than the "Miscellaneous parameters" where it belongs.
* Clarify what we are locating using the -m rule.
Submitted by: bde
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/gcc/config/freebsd.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/contrib/gcc/config/freebsd.h b/contrib/gcc/config/freebsd.h index cf4d481..f23d6a3 100644 --- a/contrib/gcc/config/freebsd.h +++ b/contrib/gcc/config/freebsd.h @@ -57,7 +57,7 @@ Boston, MA 02111-1307, USA. */ #undef LIB_SPEC #define LIB_SPEC "%{!shared:%{!pg:%{!pthread:%{!kthread:-lc}%{kthread:-lpthread -lc}}%{pthread:-lc_r}}%{pg:%{!pthread:%{!kthread:-lc_p}%{kthread:-lpthread_p -lc_p}}%{pthread:-lc_r_p}}}" -/* Let gcc locate this for us according to the -m rules. */ +/* Tell gcc to locate libgcc.a for us according to the -m rules. */ #undef LIBGCC_SPEC #define LIBGCC_SPEC \ "%{!shared:%{!pthread:%{!kthread:libgcc.a%s}}%{pthread|kthread:libgcc_r.a%s}}" @@ -66,7 +66,7 @@ Boston, MA 02111-1307, USA. */ /* Code generation parameters. */ /* Don't default to pcc-struct-return, because gcc is the only compiler, and - we want to retain compatibility with older gcc versions + we want to retain compatibility with older gcc versions (even though the svr4 ABI for the i386 says that records and unions are returned in memory). */ #undef DEFAULT_PCC_STRUCT_RETURN @@ -82,12 +82,12 @@ Boston, MA 02111-1307, USA. */ #undef DEFAULT_VTABLE_THUNKS #define DEFAULT_VTABLE_THUNKS 1 -/* Our malloc can allocte pagesized blocks efficiently. The default size - of 4072 bytes is not optimal on the i386 nor the Alpha. */ -#define OBSTACK_CHUNK_SIZE (getpagesize()) - /* Miscellaneous parameters. */ /* Tell libgcc2.c that FreeBSD targets support atexit(3). */ #define HAVE_ATEXIT + +/* Our malloc can allocte pagesized blocks efficiently. The default size + of 4072 bytes is not optimal on the i386 nor the Alpha. */ +#define OBSTACK_CHUNK_SIZE (getpagesize()) |