This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Powerpc/trampline: consider __NO_FPRS__


On Fri, 18 Jun 2010, Ryan Arnold wrote:

> The currently blessed method for achieving what you want is to clone
> this code and move a copy with FPU support into the powerpc32/fpu/
> directory and strip the FPR save out of the powerpc32/dl-trampoline.S
> code.  This, of course, introduces code bloat of asm files which is
> ... undesirable.

I'd like to propose again that we apply the originally proposed patch from 
2010 <http://sourceware.org/ml/libc-alpha/2010-06/msg00012.html>, as-is.

Using extra sysdeps files just complicates things unduly.  Hard-float and 
soft-float have two incompatible ABIs; a hypothetical nofpu/ build with a 
hard-float compiler is simply not a supported use case for glibc.  
Compilers configured for soft-float have defined __NO_FPRS__ since GCC 
4.1, which means that all versions supported for building glibc will 
define this macro under the required conditions.  So I think the tests of 
__NO_FPRS__ here are the right approach for addressing this issue.

-- 
Joseph S. Myers
joseph@codesourcery.com


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]