diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-08-23 10:38:15 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-08-23 10:38:15 +0200 |
commit | e81fe2c77814ba7638c6818a9dac2d1568fbad51 (patch) | |
tree | 5a87c829baa58634bae76b5fc636513de8e06c75 /config/debug | |
parent | 9736a99ee9fd0465aea0c1d6c0b475a0ecdc6b95 (diff) | |
download | crosstool-ng-e81fe2c77814ba7638c6818a9dac2d1568fbad51.tar.gz crosstool-ng-e81fe2c77814ba7638c6818a9dac2d1568fbad51.tar.bz2 crosstool-ng-e81fe2c77814ba7638c6818a9dac2d1568fbad51.zip |
debug/gdb: companion libs are not used
Although the gdb ./configure advertises for GMP and MPFR, those libraries
are not used by gdb (the ./configure is used across different packages,
hence the check for GMP/MPFR). See:
http://sourceware.org/ml/crossgcc/2010-08/msg00168.html
The same applies to MPC.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Diffstat (limited to 'config/debug')
-rw-r--r-- | config/debug/gdb.in.cross | 22 | ||||
-rw-r--r-- | config/debug/gdb.in.native | 17 |
2 files changed, 0 insertions, 39 deletions
diff --git a/config/debug/gdb.in.cross b/config/debug/gdb.in.cross index f5afe094..c731bf61 100644 --- a/config/debug/gdb.in.cross +++ b/config/debug/gdb.in.cross @@ -21,26 +21,4 @@ config GDB_CROSS_STATIC That way, you can share the cross-gdb without installing a toolchain on every machine that will be used to debug target programs. -config GDB_CROSS_USE_GMP_MPFR - bool - prompt "Use GMP/MPFR" - default n - select GMP - select MPFR - 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_USE_MPC - bool - prompt "Use MPC" - default n - select GDB_CROSS_USE_GMP_MPFR - select MPC - help - gdb can use MPC, although it does not seem compulsory. - - Say 'Y' here if you want to use MPC. - endif # GDB_CROSS diff --git a/config/debug/gdb.in.native b/config/debug/gdb.in.native index c959e883..a4501d18 100644 --- a/config/debug/gdb.in.native +++ b/config/debug/gdb.in.native @@ -11,23 +11,6 @@ config GDB_NATIVE if GDB_NATIVE -config GDB_NATIVE_USE_GMP_MPFR - bool - prompt "Use GMP and MPFR" - default n - select GMP_TARGET - select MPFR_TARGET - select GDB_NATIVE_NO_STATIC - help - gdb can make use of the GMP and MPFR libraries. - - While the cross-gdb (above) can use the libraries compiled for the - host, the native gdb needs the libraries for the target (where it will - eventually run). - - Setting this option will force building the GMP and MPFR libraries for - the target, and configure the native gdb to use them. - config GDB_NATIVE_NO_STATIC bool default n |