From e8cb788ea6ce06dc75edd99ebbfb04bcfc3234f6 Mon Sep 17 00:00:00 2001 From: christos Date: Sat, 1 Jun 2019 17:02:59 +0000 Subject: 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). --- tools/gdb/Makefile | 5 +++-- 1 file 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 @@ -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} -- cgit