summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2019-06-01 17:02:59 +0000
committerchristos <christos@NetBSD.org>2019-06-01 17:02:59 +0000
commite8cb788ea6ce06dc75edd99ebbfb04bcfc3234f6 (patch)
treeae75da3be572ba5985014013f4d773c699f3f14a /tools
parenta715bbc6bd4eaf56178b50b824638f86cd6019d7 (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).
Diffstat (limited to 'tools')
-rw-r--r--tools/gdb/Makefile5
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}