From 5be9bc64a2fb2b5997a41b7887db0c07939beaf7 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 23 Mar 2026 19:09:33 +0200 Subject: [PATCH] ports/libxml2: Configure with -shared-libgcc otherwise it doesn't seem to find libiconv due to __divdc3 --- ports/libxml2/build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/ports/libxml2/build.sh b/ports/libxml2/build.sh index e56179e3..ccd9265d 100755 --- a/ports/libxml2/build.sh +++ b/ports/libxml2/build.sh @@ -10,6 +10,7 @@ CONFIGURE_OPTIONS=( ) configure() { + CFLAGS='-shared-libgcc' \ meson setup \ --reconfigure \ --cross-file "$MESON_CROSS_FILE" \