mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-30 08:38:43 +08:00
24 lines
579 B
TOML
24 lines
579 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 riscv64
|
|
if [ "${TARGET}" = "riscv64gc-unknown-redox" ]; 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"
|
|
COOKBOOK_CONFIGURE="${COOKBOOK_SOURCE}/libstdc++-v3/configure"
|
|
cookbook_configure
|
|
"""
|