Browse Source

gdb: fix build, mpfr is required

Waldemar Brodkorb 6 months ago
parent
commit
8f1913800b
1 changed files with 2 additions and 1 deletions
  1. 2 1
      toolchain/gdb/Makefile

+ 2 - 1
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 \