This is the mail archive of the gcc-patches@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]

Re: libstdc++ vs aix


Richard Henderson <rth@cygnus.com> writes:

| The following two fixes are needed in order to build on AIX 4.3.
| 
| The second of the two is because 
| 
|     static const mask upper = 0x400;
|     static const mask xdigit = 0x800;
|     static const mask space = 0x200;
|     static const mask punct = 0x100;
| 
| these do not fit in a char.  Ok?

[...]

| ! INSTANTIATIONS (wchar_t);

I think this bit needs to be guarded

  #ifdef _GLIBCPP_USE_WCHAR_T
  INSTANTIATIONS (wchar_t); 
  #endif

[...]

| !     typedef unsigned int 	mask;

OK.

Thanks,

-- Gaby
CodeSourcery, LLC                       http://www.codesourcery.com


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