Anders Schau Knatten writes: > I am trying to find some info on calling conventions used by g++ and g77, > but I cannot find anything in the manuals [1] and [2]. Does anyone know > any other sources I could check? What I am looking for is what calling > convention is used by default by g++ and g77 on linux/ia64, and how to > change this if needed. > > [1] http://gcc.gnu.org/onlinedocs/gcc-3.4.6/cpp/ > [2] http://gcc.gnu.org/onlinedocs/gcc-3.3.6/g77/ gcc is just a compiler, and doesn't determine the calling conventions: thse tend to be set by the OS being used. http://www.freestandards.org/ is the place to look. Andrew.