mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-07-04 18:48:43 +08:00
26 lines
631 B
TOML
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
|
|
"""
|