AIX Status

Gabriel Dos Reis gdr@codesourcery.com
Thu Jan 25 02:43:00 GMT 2001


Mark Mitchell <mark@codesourcery.com> writes:

| I am now able to build V3, and link programs with it.
| 
| As you mentioned, you have to use GNU as to get a libstdc++ that `nm'
| can process.
| 
| However, no use of C++ I/O seems to work.  For example:
| 
|   include <iostream.h>
| 
|   int main () {
|     cerr << "Hello, world.\n";
|   }

Does the following (yours, slightly modified) output something?

	#include <iostream>

	int main() { std::cout << "Hello, world." << std::endl; }

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


More information about the Gcc mailing list