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
4532b7c84a
commit
13b8613686
@ -41,6 +41,9 @@ static crt_func __CTOR_END__[] __section(".ctors") __used = {
|
||||
static crt_func __DTOR_END__[] __section(".dtors") __used = {
|
||||
(crt_func)0
|
||||
};
|
||||
static crt_func __JCR_LIST__[] __section(".jcr") __used = {
|
||||
(crt_func)0
|
||||
};
|
||||
|
||||
static void
|
||||
__do_global_ctors_aux(void)
|
||||
|
Loading…
Reference in New Issue
Block a user