Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/tools/gdb Disable mpfr to make MKCROSSGDB work again. The pr...



details:   https://anonhg.NetBSD.org/src/rev/6189c53669aa
branches:  trunk
changeset: 456936:6189c53669aa
user:      christos <christos%NetBSD.org@localhost>
date:      Sat Jun 01 17:02:59 2019 +0000

description:
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:

 tools/gdb/Makefile |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (19 lines):

diff -r 2762ed79014a -r 6189c53669aa tools/gdb/Makefile
--- a/tools/gdb/Makefile        Sat Jun 01 15:20:51 2019 +0000
+++ b/tools/gdb/Makefile        Sat Jun 01 17:02:59 2019 +0000
@@ -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 @@
 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}
 



Home | Main Index | Thread Index | Old Index