Re: [Mingw-w64-public] link msvcr100 problem under mingw

2013-06-20 Thread Dongsheng Song
On Thu, Jun 20, 2013 at 2:31 PM, zhangxinghai zxh19750...@163.com wrote: Hello I write a test helloworld program.I want to link it against msvcr100.My enviroment is os:xp sp3 mingw64 version:ruben build target win32 I compile the program as gcc -o hello.exe main.cpp -lmsvcr100. My problem

Re: [Mingw-w64-public] Does anyone use Linux cross-build gcc 4.8 compiler to build native compiler success ?

2013-06-20 Thread Christer Solskogen
Dongsheng Song dongsheng.song@... writes: Looks fine to me. But I wonder why you build gmp, mpc and mpfr seperatly. You can just run the gcc/contrib/download_prerequisites script. Can you post config.log for the native compiler? I have my own set of scripts which does almost the same as you

Re: [Mingw-w64-public] What is the purpose of intrin.h?

2013-06-20 Thread Kai Tietz
2013/6/19 dw limegreenso...@yahoo.com: So, having heard nothing back on this topic, I've decided to just try it and see how it looks. Thanks. Below are the proposed contents of the new file intrin-impl.h, which gets included at the bottom of intrin.h. It's still a little rough, but it

Re: [Mingw-w64-public] Does anyone use Linux cross-build gcc 4.8 compiler to build native compiler success ?

2013-06-20 Thread Earnie Boyd
On Thu, Jun 20, 2013 at 9:06 AM, Dongsheng Song wrote: I want to build gcc 4.8 with isl and cloog, can I put isl and cloog to gcc/branches/gcc-4_8-branch/ like gmp/mpfr/mpc ? You should be able to determine that by looking at the top level configure script. IIRC, it will look for other

Re: [Mingw-w64-public] Does anyone use Linux cross-build gcc 4.8 compiler to build native compiler success ?

2013-06-20 Thread Ruben Van Boxem
2013/6/20 Earnie Boyd ear...@users.sourceforge.net On Thu, Jun 20, 2013 at 9:06 AM, Dongsheng Song wrote: I want to build gcc 4.8 with isl and cloog, can I put isl and cloog to gcc/branches/gcc-4_8-branch/ like gmp/mpfr/mpc ? You should be able to determine that by looking at the top

Re: [Mingw-w64-public] Does anyone use Linux cross-build gcc 4.8 compiler to build native compiler success ?

2013-06-20 Thread Dongsheng Song
On Thu, Jun 20, 2013 at 9:11 PM, Earnie Boyd ear...@users.sourceforge.net wrote: On Thu, Jun 20, 2013 at 9:06 AM, Dongsheng Song wrote: I want to build gcc 4.8 with isl and cloog, can I put isl and cloog to gcc/branches/gcc-4_8-branch/ like gmp/mpfr/mpc ? You should be able to determine

[Mingw-w64-public] different attempts to enable C++ threads in gcc-4.8.0

2013-06-20 Thread koala01
Hello, First, i would like to special thanks to ruben for its effort to provide the correct C++11 thread support. His x86_64-w64-mingw32-gcc-4.8-stdthread-win64_rubenvb personnal build has me helped a lot to find the better gcc compilation options. But this work has, for me, one significant

Re: [Mingw-w64-public] different attempts to enable C++ threads in gcc-4.8.0

2013-06-20 Thread Ruben Van Boxem
2013/6/20 koala01 koal...@free.fr Hello, First, i would like to special thanks to ruben for its effort to provide the correct C++11 thread support. His x86_64-w64-mingw32-gcc-4.8-stdthread-win64_rubenvb personnal build has me helped a lot to find the better gcc compilation options. But

Re: [Mingw-w64-public] What is the purpose of intrin.h?

2013-06-20 Thread dw
Code looks ok. I have no objections. So far so good then. But I do have a question. In Winnt.h, there is code like this: #ifdef __CYGWIN__ # if defined(__cplusplus) extern C { # endif # include x86intrin.h # if defined(__cplusplus) } # endif #else /* !__CYGWIN__ */ # include intrin.h #endif