redox/recipes/libs/libstdcxx-v3/recipe.toml
2026-05-03 09:39:01 +07:00

26 lines
631 B
TOML

[source]
same_as = "../../dev/gcc13"
[build]
template = "custom"
script = """
DYNAMIC_STATIC_INIT
COOKBOOK_CONFIGURE_FLAGS+=(
--enable-threads=posix
--enable-libstdcxx-threads
)
# TODO: Investigate why mutex is not available in these platforms
case "${TARGET}" in
"riscv64gc-unknown-redox" | *-unknown-linux-relibc)
COOKBOOK_CONFIGURE_FLAGS+=( --without-libstdcxx-zoneinfo )
;;
esac
CPPINCLUDE="${COOKBOOK_HOST_SYSROOT}/$TARGET/include/c++/13.2.0"
export CPPFLAGS+=" -I${CPPINCLUDE} -I${CPPINCLUDE}/$TARGET/bits"
COOKBOOK_CONFIGURE="${COOKBOOK_SOURCE}/libstdc++-v3/configure"
cookbook_configure
"""