diff options
author | Alan Modra <amodra@gmail.com> | 2015-11-09 15:17:05 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2015-11-09 15:21:50 +1030 |
commit | c20a0642333655311b1f5b6f78adfeb8ec9fe1d4 (patch) | |
tree | 277930644bab110ac76327044a69abe6974b30c0 /libiberty/config.in | |
parent | 78d14d2b9325fb4d25034eccf5650ef967d19640 (diff) | |
download | gdb-c20a0642333655311b1f5b6f78adfeb8ec9fe1d4.zip gdb-c20a0642333655311b1f5b6f78adfeb8ec9fe1d4.tar.gz gdb-c20a0642333655311b1f5b6f78adfeb8ec9fe1d4.tar.bz2 |
Configury changes for obstack optimization
Provides defines used to determine whether glibc obstacks are
compatible. Generally speaking, 32-bit targets won't need to use
obstack.o from libiberty if glibc is used, while 64-bit targets will,
until glibc gets the new obstack code.
libiberty/
* configure.ac: Get size of size_t.
* config.in: Regenerate.
* configure: Regenerate.
Diffstat (limited to 'libiberty/config.in')
-rw-r--r-- | libiberty/config.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libiberty/config.in b/libiberty/config.in index 0dedbf0..1ff50c6 100644 --- a/libiberty/config.in +++ b/libiberty/config.in @@ -470,6 +470,9 @@ /* The size of `long long', as computed by sizeof. */ #undef SIZEOF_LONG_LONG +/* The size of `size_t', as computed by sizeof. */ +#undef SIZEOF_SIZE_T + /* Define if you know the direction of stack growth for your system; otherwise it will be automatically deduced at run-time. STACK_DIRECTION > 0 => grows toward higher addresses STACK_DIRECTION < 0 => grows toward lower addresses |