This is the mail archive of the libc-ports@sources.redhat.com mailing list for the libc-ports 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: Updates for Alpha


On Friday 29 January 2010 19:24:54 Joseph S. Myers wrote:
> I have verified the assignment, and reviewed and committed these patches.
> I remind you that an ____longjmp_chk implementation is still needed for
> Alpha for it to work, and that it will need to be reviewed by someone with
> actual Alpha knowledge; an actual maintainer for Alpha is also needed.

while true, you can still get a working for all real intents and purposes with 
a common C stub (which is what we do in Gentoo):
/* Stub to make building happy -- no fortify checks, but
   it at least does the correct thing (longjmps).  */
#include <setjmp.h>
void ____longjmp_chk (__jmp_buf env, int val)
{
  return __longjmp (env, val);
}
-mike

Attachment: signature.asc
Description: This is a digitally signed message part.


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