This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC 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: fortran and apple rantings...




Phil Edwards wrote:
> 
> On Sun, Dec 30, 2001 at 09:33:36AM +0100, Andreas Tobler wrote:
> > And what's worth from my side, I do bootstrap, make check-gcc every
> > night since a long time. Over the whole set: c,c++,java,g77,objc.
> > Now I'm in front of being able to build even libgcj.
> 
> Weren't there some nasty issues with ctype.h in libstdc++-v3?

Do you mean this one: gcc/libstdc++-v3/include/c_std/bits/std_cctype.h

isalnum etc?

I ride them over with the hack below from the apple gcc sources.

Andreas


/* APPLE LOCAL begin supply missing ctype.h decls 2001-07-11 sts */
/* These are supposed be in ctype.h like the standard says!  We need
   this until Darwin ctype.h gets fixed and/or GCC has a fixincludes
   to supply these if they're missing.  */
extern "C" {
extern int isalnum(int c);
extern int isalpha(int c); 
extern int iscntrl(int c);
extern int isdigit(int c);
extern int isgraph(int c); 
extern int islower(int c);
extern int isprint(int c); 
extern int ispunct(int c);
extern int isspace(int c);
extern int isupper(int c);
extern int isxdigit(int c);
}
/* APPLE LOCAL end supply missing ctype.h decls 2001-07-11 sts */


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