RE: [PATCH, libgcc] Make possible to disable JCR in crtstuff.c

2012-12-18 Thread Joey Ye
-Original Message- From: H.J. Lu [mailto:hjl.to...@gmail.com] Sent: Tuesday, December 18, 2012 12:10 To: Joseph Prostko Cc: Joey Ye; gcc-patches@gcc.gnu.org Subject: Re: [PATCH, libgcc] Make possible to disable JCR in crtstuff.c On Mon, Dec 17, 2012 at 5:23 PM, Joseph Prostko

RE: [PATCH, libgcc] Make possible to disable JCR in crtstuff.c

2012-12-17 Thread Joey Ye
-Original Message- From: H.J. Lu [mailto:hjl.to...@gmail.com] Sent: Saturday, December 15, 2012 01:20 To: Joey Ye Cc: gcc-patches@gcc.gnu.org; Joseph Prostko Subject: Re: [PATCH, libgcc] Make possible to disable JCR in crtstuff.c Can't you do +# Disable jcr section if we're

Re: [PATCH, libgcc] Make possible to disable JCR in crtstuff.c

2012-12-17 Thread H.J. Lu
On Mon, Dec 17, 2012 at 1:50 AM, Joey Ye joey...@arm.com wrote: Can't you do +# Disable jcr section if we're not building java +case ,${enable_languages}, in + *java*) +use_jcr_section=1 +;; + *) +use_jcr_section=0 +;; +esac in libgcc/configure.ac? BTW, checking

Re: [PATCH, libgcc] Make possible to disable JCR in crtstuff.c

2012-12-17 Thread H.J. Lu
On Mon, Dec 17, 2012 at 5:23 PM, Joseph Prostko joe.pros...@gmail.com wrote: On Mon, Dec 17, 2012 at 2:28 PM, H.J. Lu hjl.to...@gmail.com wrote: On Mon, Dec 17, 2012 at 1:50 AM, Joey Ye joey...@arm.com wrote: * libgcc/Makefile.in: Include TARGET_USE_JCR_SECTION in CFLAGS. *

Re: [PATCH, libgcc] Make possible to disable JCR in crtstuff.c

2012-12-14 Thread H.J. Lu
On Thu, Dec 13, 2012 at 10:56 PM, Joey Ye joey...@arm.com wrote: -Original Message- From: H.J. Lu [mailto:hjl.to...@gmail.com] Sent: Friday, December 14, 2012 11:55 To: Joey Ye Cc: gcc-patches@gcc.gnu.org; Joseph Prostko Subject: Re: [PATCH, libgcc] Make possible to disable JCR

RE: [PATCH, libgcc] Make possible to disable JCR in crtstuff.c

2012-12-13 Thread Joey Ye
-Original Message- From: H.J. Lu [mailto:hjl.to...@gmail.com] Sent: Tuesday, November 27, 2012 12:56 To: Joey Ye Cc: gcc-patches@gcc.gnu.org Subject: Re: [PATCH, libgcc] Make possible to disable JCR in crtstuff.c OK to trunk? 2012-09-21 Joey Ye joey...@arm.com

RE: [PATCH, libgcc] Make possible to disable JCR in crtstuff.c

2012-12-13 Thread Joey Ye
-Original Message- From: H.J. Lu [mailto:hjl.to...@gmail.com] Sent: Friday, December 14, 2012 11:55 To: Joey Ye Cc: gcc-patches@gcc.gnu.org; Joseph Prostko Subject: Re: [PATCH, libgcc] Make possible to disable JCR in crtstuff.c 2012-12-12 Joey Ye joey...@arm.com

RE: [PATCH, libgcc] Make possible to disable JCR in crtstuff.c

2012-11-26 Thread Joey Ye
Ping^2 -Original Message- From: Joey Ye Sent: Tuesday, November 20, 2012 10:09 To: gcc-patches@gcc.gnu.org Cc: Joey Ye Subject: RE: [PATCH, libgcc] Make possible to disable JCR in crtstuff.c Ping, as Joseph Prostko is saying that this patch shall solve the same problem he's

Re: [PATCH, libgcc] Make possible to disable JCR in crtstuff.c

2012-11-26 Thread H.J. Lu
On Mon, Nov 26, 2012 at 7:19 PM, Joey Ye joey...@arm.com wrote: Ping^2 -Original Message- From: Joey Ye Sent: Tuesday, November 20, 2012 10:09 To: gcc-patches@gcc.gnu.org Cc: Joey Ye Subject: RE: [PATCH, libgcc] Make possible to disable JCR in crtstuff.c Ping, as Joseph Prostko

Re: [PATCH, libgcc] Make possible to disable JCR in crtstuff.c

2012-11-26 Thread Joseph Prostko
On Mon, Nov 26, 2012 at 10:19 PM, Joey Ye joey...@arm.com wrote: Ping^2 -Original Message- From: Joey Ye Sent: Tuesday, November 20, 2012 10:09 To: gcc-patches@gcc.gnu.org Cc: Joey Ye Subject: RE: [PATCH, libgcc] Make possible to disable JCR in crtstuff.c Ping, as Joseph Prostko

Re: [PATCH, libgcc] Make possible to disable JCR in crtstuff.c

2012-11-26 Thread Joseph Prostko
] Make possible to disable JCR in crtstuff.c Since we have --enable-languages=.., can't we disable JCR_SECTION section if java isn't enabled? I suppose that is certainly another option. My main goal is to not have _Jv_RegisterClasses show up in crtbegin.o, as it simply isn't needed or desired

RE: [PATCH, libgcc] Make possible to disable JCR in crtstuff.c

2012-11-19 Thread Joey Ye
Ping, as Joseph Prostko is saying that this patch shall solve the same problem he's facing. -Original Message- From: Joey Ye [mailto:joey...@arm.com] Sent: Friday, September 21, 2012 15:42 To: gcc-patches@gcc.gnu.org Subject: [PATCH, libgcc] Make possible to disable JCR in crtstuff.c