This is the mail archive of the gcc@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: AIX Status


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

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