Add the missing 0 at the end of the .jcr section.
Without this the dynamic library test was failing as it was calling _Jv_RegisterClasses multiple times.
This commit is contained in:
parent
aca1c28a0a
commit
e5c0fd4be6
@ -41,6 +41,9 @@ static crt_func __CTOR_END__[] __section(".ctors") __used = {
|
|||||||
static crt_func __DTOR_END__[] __section(".dtors") __used = {
|
static crt_func __DTOR_END__[] __section(".dtors") __used = {
|
||||||
(crt_func)0
|
(crt_func)0
|
||||||
};
|
};
|
||||||
|
static crt_func __JCR_LIST__[] __section(".jcr") __used = {
|
||||||
|
(crt_func)0
|
||||||
|
};
|
||||||
|
|
||||||
static void
|
static void
|
||||||
__do_global_ctors_aux(void)
|
__do_global_ctors_aux(void)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user