config.gcc (msp430*-*-*): Enable initfini_array by default unless explicitly disabled with...

2019-07-24  Jozef Lawrynowicz  <jozef.l@mittosystems.com>

	* config.gcc (msp430*-*-*): Enable initfini_array by default unless
	explicitly disabled with --disable-initfini-array.

From-SVN: r273774
This commit is contained in:
Jozef Lawrynowicz 2019-07-24 21:13:54 +00:00 committed by Jozef Lawrynowicz
parent d4c972b7eb
commit c46d171720
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2019-07-24 Jozef Lawrynowicz <jozef.l@mittosystems.com>
* config.gcc (msp430*-*-*): Enable initfini_array by default unless
explicitly disabled with --disable-initfini-array.
2019-07-24 Jozef Lawrynowicz <jozef.l@mittosystems.com>
* config/msp430/msp430.h (ENDFILE_SPEC): Wrap uses of crtn*.o in

View File

@ -2512,6 +2512,12 @@ msp430*-*-*)
cxx_target_objs="msp430-c.o"
tmake_file="${tmake_file} msp430/t-msp430"
extra_gcc_objs="driver-msp430.o"
# Enable .init_array unless it has been explicitly disabled.
# The MSP430 EABI mandates the use of .init_array, and the Newlib CRT code
# since mid-2019 expects it.
if test x${disable_initfini_array} != xyes; then
gcc_cv_initfini_array=yes
fi
;;
nds32*-*-*)
target_cpu_default="0"