This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB 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]

Your INTERMEDIATE_ENCODING patch for Solaris


Hi Tom,

We've been using a version of your patch posted at:

  http://sourceware.org/ml/gdb-patches/2009-07/msg00434.html

except that we use

  #ifdef __sun__

rather than

  #ifdef __STDC_ISO_10646__

to special case for Solaris.

As Andrew replied to your message above, __STDC_ISO_10646__ is not
defined on Solaris.  Could we use __sun__ instead?

Or if that's not enough, we could try something like:

  #if defined(__sun__) || defined(__STDC_ISO_10646__)

Thoughts?

Thanks in advance,

Kazu Hirata


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