RE: [MIPS] fix CRT_CALL_STATIC_FUNCTION macro

2015-01-22 Thread Matthew Fortune
> This is a follow-up to a change [1] in glibc. It fixes the issue [2] > when jal can not reach a target in different region. > > It has been tested with DejaGnu for mips32/o32, mips64/n32 and > mips64/n64. > > Let me know what you think. So to confirm, the issue is non-pic crt calling an init r

RE: [MIPS] fix CRT_CALL_STATIC_FUNCTION macro

2015-01-22 Thread Petar Jovanovic
...@imgtec.com] Sent: Thursday, January 22, 2015 9:36 AM To: Petar Jovanovic; gcc-patches@gcc.gnu.org Cc: Petar Jovanovic Subject: RE: [MIPS] fix CRT_CALL_STATIC_FUNCTION macro > This is a follow-up to a change [1] in glibc. It fixes the issue [2] > when jal can not reach a target in dif

RE: [MIPS] fix CRT_CALL_STATIC_FUNCTION macro

2015-01-26 Thread Maciej W. Rozycki
On Thu, 22 Jan 2015, Matthew Fortune wrote: > > This is a follow-up to a change [1] in glibc. It fixes the issue [2] > > when jal can not reach a target in different region. Is it not a problem that can be solved with rearranging the order of sections in output? > > It has been tested with Deja

RE: [MIPS] fix CRT_CALL_STATIC_FUNCTION macro

2015-02-05 Thread Petar Jovanovic
> > This is a follow-up to a change [1] in glibc. It fixes the issue [2] > > when jal can not reach a target in different region. > Is it not a problem that can be solved with rearranging the order of sections in output? Is not this more clean solution to it? Otherwise we need to make sure that _

RE: [MIPS] fix CRT_CALL_STATIC_FUNCTION macro

2015-02-06 Thread Maciej W. Rozycki
On Thu, 5 Feb 2015, Petar Jovanovic wrote: > > > This is a follow-up to a change [1] in glibc. It fixes the issue [2] > > > when jal can not reach a target in different region. > > Is it not a problem that can be solved with rearranging the order of > sections in output? > > Is not this more cle