diff options
author | Thiago Jung Bauermann <bauerman@br.ibm.com> | 2007-10-25 17:52:32 +0000 |
---|---|---|
committer | Thiago Jung Bauermann <bauerman@br.ibm.com> | 2007-10-25 17:52:32 +0000 |
commit | 9b913628cfe092b3fdd328de4264def1ec1e94cb (patch) | |
tree | ff478f2ba89a0537777a3cebad52b198b46faa57 /gdb/config.in | |
parent | c6e653525f8ea3235ab15b974cb9cf9ee686bf8e (diff) | |
download | gdb-9b913628cfe092b3fdd328de4264def1ec1e94cb.zip gdb-9b913628cfe092b3fdd328de4264def1ec1e94cb.tar.gz gdb-9b913628cfe092b3fdd328de4264def1ec1e94cb.tar.bz2 |
2007-10-25 Wu Zhou <woodzltc@cn.ibm.com>
Thiago Jung Bauermann <bauerman@br.ibm.com>
* Makefile.in (LIBDECNUMBER_DIR, LIBDECNUMBER, LIBDECNUMBER_SRC
LIBDECNUMBER_CFLAGS): New macros for libdecnumber.
(INTERNAL_CFLAGS_BASE): Add LIBDECNUMBER_CFLAGS in.
(INSTALLED_LIBS): Add -ldecnumber in.
(CLIBS): Add LIBDECNUMBER in.
(decimal128_h, decimal64_h, decimal32_h): New macros for decimal
headers.
(dfp_h): New macros for decimal floating point.
(dfp.o): New target.
(COMMON_OBS): Add dfp.o in.
(c-exp.o): Add dfp_h as dependency.
(valprint.o): Add dfp_h as dependency.
(value.o): Add dfp_h as dependency.
* dfp.h: New header file for decimal floating point support in
GDB.
* dfp.c: New source file for decimal floating point support in
GDB. Implement decimal_from_string and decimal_to_string based
on libdecnumber API.
* configure.ac: Add AC_C_BIGENDIAN test.
* config.in, configure: Regenerate.
Diffstat (limited to 'gdb/config.in')
-rw-r--r-- | gdb/config.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/config.in b/gdb/config.in index 39e00e0..eb82da0 100644 --- a/gdb/config.in +++ b/gdb/config.in @@ -586,6 +586,10 @@ /* Define if the simulator is being linked in. */ #undef WITH_SIM +/* Define to 1 if your processor stores words with the most significant byte + first (like Motorola and SPARC, unlike Intel and VAX). */ +#undef WORDS_BIGENDIAN + /* Define to 1 if on AIX 3. System headers sometimes define this. We just want to avoid a redefinition error message. */ |