diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-03-15 21:51:20 +0100 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-03-15 21:51:20 +0100 |
commit | 2583337c7cd64ab65921695d42caf98358cc3634 (patch) | |
tree | 188eabbb443cbfa097acb38a4410c32f5e6c35e9 /config/debug/gdb.in.cross | |
parent | c270bf2a02bbd2233b90c4175792fabea1455b08 (diff) | |
download | crosstool-ng-2583337c7cd64ab65921695d42caf98358cc3634.tar.gz crosstool-ng-2583337c7cd64ab65921695d42caf98358cc3634.tar.bz2 crosstool-ng-2583337c7cd64ab65921695d42caf98358cc3634.zip |
debug/gdb: add option to use GMP and MPFR
GMP and MPFR are optional for gdb, so offer a config option.
Diffstat (limited to 'config/debug/gdb.in.cross')
-rw-r--r-- | config/debug/gdb.in.cross | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/config/debug/gdb.in.cross b/config/debug/gdb.in.cross index 4c04b7ea..4699bab0 100644 --- a/config/debug/gdb.in.cross +++ b/config/debug/gdb.in.cross @@ -10,10 +10,27 @@ config GDB_CROSS if GDB_CROSS +config GDB_CROSS_USE_GMP_MPFR + bool + prompt "Use GMP/MPFR" + default n + select GMP + select MPFR + select GDB_CROSS_NO_STATIC + help + gdb can use GMP+MPFR, although it does not seem compulsory. + + Say 'Y' here if you want to use GMP+MPFR. + +config GDB_CROSS_NO_STATIC + bool + default n + config GDB_CROSS_STATIC bool prompt "Build a static cross gdb" default n + depends on ! GDB_CROSS_NO_STATIC help A static cross gdb can be usefull if you debug on a machine that is not the one that is used to compile the toolchain. |