Re: [Mingw-w64-public] wcschr etc. problem

2014-05-04 Thread Adrien Nader
Hi, On Tue, Apr 29, 2014, G M wrote: > Hi Everyone > > I can't build the popular build program ninja with clang++ and mingw. > > The reason is demonstrated by this simple program: > > // wcx.cpp > > #include > using namespace std; > #include > int main() > { > wchar_t* p = wcschr(L"hello

Re: [Mingw-w64-public] wcschr etc. problem

2014-05-01 Thread LRN
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 29.04.2014 10:52, G M wrote: > Hi Everyone > > I can't build the popular build program ninja with clang++ and mingw. > > The reason is demonstrated by this simple program: > > // wcx.cpp > > #include using namespace std; #include int main() {

[Mingw-w64-public] wcschr etc. problem

2014-04-28 Thread G M
Hi Everyone I can't build the popular build program ninja with clang++ and mingw. The reason is demonstrated by this simple program: // wcx.cpp #include using namespace std; #include int main() { wchar_t* p = wcschr(L"hello", L'h'); } Compiling this program with g++ yields the same probl