The closest thing we have to a standard C++ ABI is the "Itanium C++ ABI":
http://sourcery.mentor.com/public/cxx-abi/
"this document is written as a generic specification, to be usable by C++ implementations on a variety of architectures. However, it does contain processor-specific material for the Itanium 64-bit ABI, identified as such."
See http://gcc.gnu.org/onlinedocs/gcc-4.6.1/gcc/Compatibility.html#Compatibility
"Starting with GCC 3.2, GCC binary conventions for C++ are based on a written, vendor-neutral C++ ABI that was designed to be specific to 64-bit Itanium but also includes generic specifications that apply to any platform. This C++ ABI is also implemented by other compiler vendors on some platforms, notably GNU/Linux and BSD systems"
wchar_tis kind of annoying, but I'm not sure how to categorize it :-) – Let_Me_Be Sep 20 '11 at 21:56fopenexpects UTF-8 strings? That just WOW. Here is the link: stackoverflow.com/q/7500902/211659 And BTW I use MSVC, Intel and GCC, since I teach C and C++ and therefore need to know how functional each of these major compilers is. – Let_Me_Be Sep 21 '11 at 13:52