diff options
| author | christos <christos@NetBSD.org> | 2019-06-01 17:02:59 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2019-06-01 17:02:59 +0000 |
| commit | e8cb788ea6ce06dc75edd99ebbfb04bcfc3234f6 (patch) | |
| tree | ae75da3be572ba5985014013f4d773c699f3f14a | |
| parent | a715bbc6bd4eaf56178b50b824638f86cd6019d7 (diff) | |
Disable mpfr to make MKCROSSGDB work again. The problem is that the default
(auto) finds the mpfr library in tools, but then when it tries to build using
the proper headers it does not find it anymore since we don't install it
(like the native build does not find it).
| -rw-r--r-- | tools/gdb/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/gdb/Makefile b/tools/gdb/Makefile index 39ec4475dc7..c4bbde2d2b3 100644 --- a/tools/gdb/Makefile +++ b/tools/gdb/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.36 2018/05/01 19:59:46 christos Exp $ +# $NetBSD: Makefile,v 1.37 2019/06/01 17:02:59 christos Exp $ .include <bsd.hostinit.mk> @@ -9,7 +9,8 @@ GNUHOSTDIST= ${GDBDIR}/dist FIND_ARGS= \! \( -type d -name sim -prune \) CONFIGURE_ARGS= --target=${MACHINE_GNU_PLATFORM} --disable-nls \ - --program-transform-name="s,^,${MACHINE_GNU_PLATFORM}-," + --program-transform-name="s,^,${MACHINE_GNU_PLATFORM}-," \ + --without-mpfr MAKE_ARGS= MACHINE= MAKEINFO=${TOOL_MAKEINFO:Q} |
