diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-04-15 22:34:35 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-04-15 22:34:35 +0200 |
commit | cc78bea7d3de2d433aa622b4e5c15c26b25bbb5f (patch) | |
tree | 99d4fbbcd1b2b307c8ab18a72acf3454170559fe | |
parent | 1f87ae813c327553cba14abfbfa25775c988b90f (diff) | |
download | crosstool-ng-cc78bea7d3de2d433aa622b4e5c15c26b25bbb5f.tar.gz crosstool-ng-cc78bea7d3de2d433aa622b4e5c15c26b25bbb5f.tar.bz2 crosstool-ng-cc78bea7d3de2d433aa622b4e5c15c26b25bbb5f.zip |
debug/gdb: allow static build with complibs
It is now possible to built static versions of the companion libraries,
so we can now build a static cross-gdb using the complibs.
-rw-r--r-- | config/debug/gdb.in.cross | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/config/debug/gdb.in.cross b/config/debug/gdb.in.cross index 900ff72d..78b0549e 100644 --- a/config/debug/gdb.in.cross +++ b/config/debug/gdb.in.cross @@ -16,7 +16,6 @@ config GDB_CROSS_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. @@ -28,21 +27,15 @@ config GDB_CROSS_USE_MPC default n select GDB_CROSS_USE_GMP_MPFR select MPC - select GDB_CROSS_NO_STATIC help gdb can use MPC, although it does not seem compulsory. Say 'Y' here if you want to use MPC. -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. |