MSP430: Add -fno-exceptions multilib

* config-ml.in (msp430-*-*): Support --disable-no-exceptions configure
	flag.
This commit is contained in:
Jozef Lawrynowicz 2023-08-07 13:07:29 +02:00 committed by Alan Modra
parent b63eb8bc8c
commit 6248684a12

View File

@ -383,6 +383,19 @@ mips*-*-*)
done
fi
;;
msp430-*-*)
if [ x$enable_no_exceptions = xno ]
then
old_multidirs="${multidirs}"
multidirs=""
for x in ${old_multidirs}; do
case "$x" in
*no-exceptions* ) : ;;
*) multidirs="${multidirs} ${x}" ;;
esac
done
fi
;;
powerpc*-*-* | rs6000*-*-*)
if [ x$enable_aix64 = xno ]
then