From 7162b7f8fd88b5247586d91f4ac74b01352d3946 Mon Sep 17 00:00:00 2001 From: Wildan M Date: Tue, 14 Apr 2026 18:24:23 +0700 Subject: [PATCH] Add exception relibc --- recipes/libs/libstdcxx-v3/recipe.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/recipes/libs/libstdcxx-v3/recipe.toml b/recipes/libs/libstdcxx-v3/recipe.toml index c89158af4..be1f84888 100644 --- a/recipes/libs/libstdcxx-v3/recipe.toml +++ b/recipes/libs/libstdcxx-v3/recipe.toml @@ -15,6 +15,9 @@ COOKBOOK_CONFIGURE_FLAGS+=( if [ "${TARGET}" = "riscv64gc-unknown-redox" ]; then COOKBOOK_CONFIGURE_FLAGS+=( --without-libstdcxx-zoneinfo ) fi +if [ "${TARGET}" = "x86_64-unknown-linux-musl" ]; then +COOKBOOK_CONFIGURE_FLAGS+=( --without-libstdcxx-zoneinfo ) +fi CPPINCLUDE="${COOKBOOK_HOST_SYSROOT}/$TARGET/include/c++/13.2.0" export CPPFLAGS+=" -I${CPPINCLUDE} -I${CPPINCLUDE}/$TARGET/bits"