configure: warn when gcc_syslibs_devel is not installed

Change-Id: I03177c7afcde64088cfed5e68c3823f69bd8a8bc
Reviewed-on: https://review.haiku-os.org/c/haiku/+/10713
Reviewed-by: waddlesplash <[email protected]>
This commit is contained in:
Pascal Abresch
2026-04-10 17:56:23 +00:00
committed by nephele nephele
parent 3458bceae0
commit 4d4e7ad01e
Vendored
+7
View File
@@ -328,6 +328,13 @@ standard_gcc_settings()
bootLibgcc=`$gcc -print-file-name=libgcc.a`
bootLibSupCxx=`$gcc -print-file-name=libsupc++.a`
if [ "$bootLibSupCxx" = "libsupc++.a" ]; then
echo "libsupc++.a could not be found!"
if [ "$HOST_PLATFORM" = "haiku_host" ]; then
echo "try installing gcc_syslibs_devel or using the cross-tools"
fi
exit 1
fi
local headersBase=$gccdir/../../../..
local headers=$headersBase/$gccMachine/include/c++/$gccRawVersion
if [ ! -d $headers ]; then