From fbe18939bf6088ddcb19fbb1934d7ce2c54d49c5 Mon Sep 17 00:00:00 2001 From: Wildan M Date: Mon, 16 Feb 2026 16:52:47 +0700 Subject: [PATCH] Fix libgmp not build shared libs (again) --- recipes/libs/libgmp/recipe.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/recipes/libs/libgmp/recipe.toml b/recipes/libs/libgmp/recipe.toml index f89339ea7..d68f1c477 100644 --- a/recipes/libs/libgmp/recipe.toml +++ b/recipes/libs/libgmp/recipe.toml @@ -16,6 +16,9 @@ rsync -a --delete "${COOKBOOK_SOURCE}/" ./ COOKBOOK_SOURCE="${COOKBOOK_BUILD}" if [ "$TARGET" != "$COOKBOOK_HOST_TARGET" ]; then autotools_recursive_regenerate + # need to invoke configure in specific way to make shared libs work + ./configure --host="${GNU_TARGET}" --prefix="/usr" + COOKBOOK_CONFIGURE=true fi DYNAMIC_STATIC_INIT