On Mon, Jun 09, 2003 at 06:53:46AM -0500, [EMAIL PROTECTED] wrote:
> Hi All,
> 
> //Application Source
> [EMAIL PROTECTED] root]# more hello.cpp
> #include <iostream>
> #include <fstream>
> #include <string>
> using namespace std;
> int main(int argc, char *argv[])
> {
>         wstring x(L"Hello World!");
>         //cout << "Hello World!" << endl;
>         //cout << x << endl;
>         return 0;
> }
> 
> 
> //Compiling with wstring support
> [EMAIL PROTECTED] root]# g++296 -D__GLIBCPP_WCHAR_SUPPORT__ hello.cpp

You need to use g++296 -wchar-stdc++ hello.cpp instead.

        Jakub


-- 
Psyche-list mailing list
[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/psyche-list

Reply via email to