summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2025-03-16 05:31:55 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2025-03-16 16:38:43 +0100
commit8f1913800b8c339d3718b223c33f2610a83f2446 (patch)
treed0187fc4fa4a493d100d70fd05a9fd793e57b5c7
parentae6700b2f6c707ad1d18337ccc89ccab4bfa3676 (diff)
gdb: fix build, mpfr is required
-rw-r--r--toolchain/gdb/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/toolchain/gdb/Makefile b/toolchain/gdb/Makefile
index 5f46cb926..f3f8bf8da 100644
--- a/toolchain/gdb/Makefile
+++ b/toolchain/gdb/Makefile
@@ -29,7 +29,8 @@ $(WRKBUILD)/.configured:
--build=$(GNU_HOST_NAME) \
--host=$(GNU_HOST_NAME) \
--target=$(GNU_TARGET_NAME) \
- --with-libgmp-prefix='${STAGING_HOST_DIR}/usr' \
+ --with-gmp='${STAGING_HOST_DIR}/usr' \
+ --with-mpfr='${STAGING_HOST_DIR}/usr' \
--disable-dependency-tracking \
--without-uiout \
--enable-gdbmi \