2014-12-31 11:53:12 +08:00
|
|
|
/*
|
2018-10-14 19:28:18 +08:00
|
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
2014-12-31 11:53:12 +08:00
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2014-12-03 Bernard Add copyright header.
|
|
|
|
* 2014-12-29 Bernard Add cplusplus initialization for ARMCC.
|
2016-06-28 16:24:26 +08:00
|
|
|
* 2016-06-28 Bernard Add _init/_fini routines for GCC.
|
2017-01-31 13:16:01 +08:00
|
|
|
* 2016-10-02 Bernard Add WEAK for cplusplus_system_init routine.
|
2014-12-31 11:53:12 +08:00
|
|
|
*/
|
|
|
|
|
2014-11-01 14:12:58 +08:00
|
|
|
#include <rtthread.h>
|
|
|
|
|
2019-01-12 12:05:55 +08:00
|
|
|
#if defined(__CC_ARM) || defined(__CLANG_ARM)
|
2014-12-31 11:53:12 +08:00
|
|
|
extern void $Super$$__cpp_initialize__aeabi_(void);
|
|
|
|
/* we need to change the cpp_initialize order */
|
2019-01-12 12:05:55 +08:00
|
|
|
RT_WEAK void $Sub$$__cpp_initialize__aeabi_(void)
|
2014-12-31 11:53:12 +08:00
|
|
|
{
|
2016-07-13 09:37:04 +08:00
|
|
|
/* empty */
|
2014-12-31 11:53:12 +08:00
|
|
|
}
|
2016-07-13 09:37:04 +08:00
|
|
|
#elif defined(__GNUC__) && !defined(__CS_SOURCERYGXX_MAJ__)
|
|
|
|
/* The _init()/_fini() routines has been defined in codesourcery g++ lite */
|
2018-09-09 23:25:28 +08:00
|
|
|
RT_WEAK void _init()
|
2016-06-28 16:24:26 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-09-09 23:25:28 +08:00
|
|
|
RT_WEAK void _fini()
|
2016-06-28 16:24:26 +08:00
|
|
|
{
|
|
|
|
}
|
2017-05-19 21:41:43 +08:00
|
|
|
|
2017-09-18 11:32:13 +08:00
|
|
|
RT_WEAK void *__dso_handle = 0;
|
2017-05-19 21:41:43 +08:00
|
|
|
|
2014-12-31 11:53:12 +08:00
|
|
|
#endif
|
|
|
|
|
2019-01-12 12:05:55 +08:00
|
|
|
RT_WEAK int cplusplus_system_init(void)
|
2014-11-01 14:12:58 +08:00
|
|
|
{
|
2019-01-12 12:05:55 +08:00
|
|
|
#if defined(__CC_ARM) || defined(__CLANG_ARM)
|
2015-01-22 17:22:01 +08:00
|
|
|
/* If there is no SHT$$INIT_ARRAY, calling
|
2015-01-23 10:37:07 +08:00
|
|
|
* $Super$$__cpp_initialize__aeabi_() will cause fault. At least until Keil5.12
|
|
|
|
* the problem still exists. So we have to initialize the C++ runtime by ourself.
|
|
|
|
*/
|
2015-01-22 17:22:01 +08:00
|
|
|
typedef void PROC();
|
|
|
|
extern const unsigned long SHT$$INIT_ARRAY$$Base[];
|
|
|
|
extern const unsigned long SHT$$INIT_ARRAY$$Limit[];
|
2016-07-13 09:37:04 +08:00
|
|
|
|
2015-01-22 17:22:01 +08:00
|
|
|
const unsigned long *base = SHT$$INIT_ARRAY$$Base;
|
|
|
|
const unsigned long *lim = SHT$$INIT_ARRAY$$Limit;
|
|
|
|
|
|
|
|
for (; base != lim; base++)
|
|
|
|
{
|
2019-04-03 17:25:49 +08:00
|
|
|
PROC *proc = (PROC *)((const char *)base + *base);
|
2015-01-22 17:22:01 +08:00
|
|
|
(*proc)();
|
|
|
|
}
|
2019-01-12 12:05:55 +08:00
|
|
|
#elif defined(__GNUC__)
|
2019-04-03 17:25:49 +08:00
|
|
|
typedef void(*pfunc)();
|
2019-01-12 12:05:55 +08:00
|
|
|
extern pfunc __ctors_start__[];
|
|
|
|
extern pfunc __ctors_end__[];
|
|
|
|
pfunc *p;
|
|
|
|
|
|
|
|
for (p = __ctors_start__; p < __ctors_end__; p++)
|
|
|
|
(*p)();
|
2014-11-01 14:12:58 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
INIT_COMPONENT_EXPORT(cplusplus_system_init);
|