Re: [Mingw-w64-public] [PATCH] Some intrinsics for ARM

2014-05-19 Thread Kai Tietz
2014-05-19 21:59 GMT+02:00 André Hentschel : > Please review, i'll commit it. Beside one nit, patch looks of to me. Please use instead of: '#if defined(__x86_64__) || defined(_X86_) || defined(__arm__)' the guard of: '#if defined(__x86_64__) || defined (_AMD64_) || defined (__i386__) || defined(

[Mingw-w64-public] [PATCH] Some intrinsics for ARM

2014-05-19 Thread André Hentschel
Please review, i'll commit it. Index: mingw-w64-headers/include/psdk_inc/intrin-impl.h === --- mingw-w64-headers/include/psdk_inc/intrin-impl.h (Revision 6637) +++ mingw-w64-headers/include/psdk_inc/intrin-impl.h (Arbeitskopie) @@ -10

Re: [Mingw-w64-public] Compiler looking for wWinMain in a console application (Unicode build).

2014-05-19 Thread JonY
On 5/19/2014 19:28, James Russell Moore wrote: > Ahh... I see, that fixes fixed the build, thank you very much. > > I'm curious as to why the error message that's displayed, it reported that > wWinMain() was the one undefined in a Unicode build. I just realized that a > non-Unicode compilation bui

Re: [Mingw-w64-public] Compiler looking for wWinMain in a console application (Unicode build).

2014-05-19 Thread James Russell Moore
Ahh... I see, that fixes fixed the build, thank you very much. I'm curious as to why the error message that's displayed, it reported that wWinMain() was the one undefined in a Unicode build. I just realized that a non-Unicode compilation builds fine without even specifying the 'extern "C"' part.