Re: [Mingw-w64-public] GDB version information for ruben vb build

2013-06-03 Thread Ray Donnelly
Hi Abir, Qt Project official releases are currently using mingw-builds toolchain releases which includes Python with pretty-printers. Also, mingw-builds project build their own (comprehensive) Qt releases. The toolchain that's likely to be used in 5.1.0 is (I think):

Re: [Mingw-w64-public] GDB version information for ruben vb build

2013-06-03 Thread Ray Donnelly
Sorry, gmail fail (Enter Key caused a Send rather than a newline..) The URL for mingw-builds Qt-builds releases is: http://sourceforge.net/projects/mingwbuilds/files/external-binary-packages/Qt-Builds/ On Mon, Jun 3, 2013 at 8:11 AM, Ray Donnelly mingw.andr...@gmail.comwrote: Hi Abir, Qt

Re: [Mingw-w64-public] GDB version information for ruben vb build

2013-06-03 Thread Ruben Van Boxem
2013/6/3 Abir Basak abirba...@gmail.com I was using build by Ruben for Mingw W64 for long times with Qt Creator IDE. However from version 2.7 onward it fails to debug using the gdb shipped by it. The reason is most likely that it fails to parse the gdb version information like GNU gdb

Re: [Mingw-w64-public] GDB version information for ruben vb build (Ruben Van Boxem)

2013-06-03 Thread Abir Basak
I was using build by Ruben for Mingw W64 for long times with Qt Creator IDE. However from version 2.7 onward it fails to debug using the gdb shipped by it. The reason is most likely that it fails to parse the gdb version information like GNU gdb (rubenvb-4.7.2-release)

Re: [Mingw-w64-public] GDB version information for ruben vb build (Ruben Van Boxem)

2013-06-03 Thread Ray Donnelly
It seems clear to me that you should submit a patch that fixes this to Qt Project, and also if possible file the boost unit_test issue with the mingw-builds project. On Mon, Jun 3, 2013 at 9:56 AM, Abir Basak abirba...@gmail.com wrote: I was using build by Ruben for Mingw W64 for long times

Re: [Mingw-w64-public] InterlockedBitTestAndXXX

2013-06-03 Thread Ozkan Sezer
On Mon, Jun 3, 2013 at 12:26 AM, dw limegreenso...@yahoo.com wrote: I have found some problems with the InterlockedBitTestAndXXX functions. For example: - Despite sezero's recent update, they still don't all have the memory clobber. - The constraints for the 64bit versions are incorrect (I

Re: [Mingw-w64-public] GDB version information for ruben vb build (Ruben Van Boxem)

2013-06-03 Thread Ruben Van Boxem
2013/6/3 Ray Donnelly mingw.andr...@gmail.com It seems clear to me that you should submit a patch that fixes this to Qt Project, and also if possible file the boost unit_test issue with the mingw-builds project. I took the liberty to submit a bug report to the Qt Project:

Re: [Mingw-w64-public] GDB version information for ruben vb build (Ruben Van Boxem) (Ruben Van Boxem)

2013-06-03 Thread Abir Basak
It seems clear to me that you should submit a patch that fixes this to Qt Project, and also if possible file the boost unit_test issue with the mingw-builds project. I took the liberty to submit a bug report to the Qt Project: https://bugreports.qt-project.org/browse/QTCREATORBUG-9452

[Mingw-w64-public] PRIu64 and uint64_t

2013-06-03 Thread Gunnar
In MinGW564 the code: #define __STDC_FORMAT_MACROS 1 #include inttypes.h .. .. uint64_t i = 0; printf(i = % PRIu64 \n, i); leads to a unknown conversion type character 'l' in format. In MiGW32 it compiles witout a warning. The command that I use is x86_64-w64-mingw32-gcc-4.8.0.exe

Re: [Mingw-w64-public] __faststorefence and mingw-w64 philosophy

2013-06-03 Thread Kai Tietz
2013/6/3 dw limegreenso...@yahoo.com: So, a question about __faststorefence. The current implementation in winnt.h is incorrect. I have 3 alternates to propose, and which one is best depends on the goals of the mingw-w64 project. One approach is just do what MSVC does. However, there's

[Mingw-w64-public] [PATCH] Add winstring.h and corresponding runtimeobject imports

2013-06-03 Thread Rafaël Carré
--- mingw-w64-crt/Makefile.am | 6 +- mingw-w64-crt/lib32/runtimeobject.def | 25 + mingw-w64-crt/lib64/runtimeobject.def | 29 + mingw-w64-headers/include/winstring.h | 202 ++ 4 files changed, 260 insertions(+), 2 deletions(-) create mode

Re: [Mingw-w64-public] [PATCH] Add winstring.h and corresponding runtimeobject imports

2013-06-03 Thread Kai Tietz
2013/6/3 Rafaël Carré fun...@videolan.org: --- mingw-w64-crt/Makefile.am | 6 +- mingw-w64-crt/lib32/runtimeobject.def | 25 + mingw-w64-crt/lib64/runtimeobject.def | 29 + mingw-w64-headers/include/winstring.h | 202 ++ 4 files

Re: [Mingw-w64-public] [PATCH] Add winstring.h and corresponding runtimeobject imports

2013-06-03 Thread JonY
On 6/3/2013 22:18, Rafaël Carré wrote: new file mode 100644 index 000..c49fc51 --- /dev/null +++ b/mingw-w64-crt/lib32/runtimeobject.def @@ -0,0 +1,25 @@ +LIBRARY api-ms-win-core-winrt-string-l1-1-0.dll new file mode 100644 index 000..c211978 --- /dev/null +++

Re: [Mingw-w64-public] PRIu64 and uint64_t

2013-06-03 Thread JonY
On 6/3/2013 20:16, Rafaël Carré wrote: Le 03/06/2013 13:00, Gunnar a écrit : In MinGW564 the code: #define __STDC_FORMAT_MACROS 1 #include inttypes.h .. .. uint64_t i = 0; printf(i = % PRIu64 \n, i); leads to a unknown conversion type character 'l' in format. In MiGW32 it compiles

[Mingw-w64-public] Runtime for Cygwin

2013-06-03 Thread Алексей Павлов
Hi, all! When using latest mingw-w64 runtime from trunk for Cygwin I have error: http://pastebin.com/9WVgE1Gu Regards, Alexey. -- Get 100% visibility into Java/.NET code with AppDynamics Lite It's a free troubleshooting

Re: [Mingw-w64-public] Runtime for Cygwin

2013-06-03 Thread Kai Tietz
2013/6/3 Алексей Павлов alex...@gmail.com: Hi, all! When using latest mingw-w64 runtime from trunk for Cygwin I have error: http://pastebin.com/9WVgE1Gu Regards, Alexey. Hmm, means that Interlocked-Functions getting defined twice with different prototypes. Corinna, any idea here? Regards,

Re: [Mingw-w64-public] Runtime for Cygwin

2013-06-03 Thread Алексей Павлов
I have this error only on 64-bit Cygwin 2013/6/3 Kai Tietz ktiet...@googlemail.com 2013/6/3 Алексей Павлов alex...@gmail.com: Hi, all! When using latest mingw-w64 runtime from trunk for Cygwin I have error: http://pastebin.com/9WVgE1Gu Regards, Alexey. Hmm, means that

Re: [Mingw-w64-public] Do I select the right build type

2013-06-03 Thread deneme.true
Hello, zhangxinghai, As I remember it is possible to compile wxWidgets library with Ruben's toolchain on MSYS. At the end of configure command details of guess should be correct for 32 bit os. Regards -- How ServiceNow

Re: [Mingw-w64-public] [Website] Work on a Download page

2013-06-03 Thread Adrien Nader
Hi, I've uploaded a new version of that page: http://notk.org/~adrien/picker.php As you'll see, quite a lot of things have changed and the page should feel lighter and more intuitive. Some of the new data isn't completely right and there are a few cosmetics change to do. Apart from that, I

Re: [Mingw-w64-public] __faststorefence and mingw-w64 philosophy

2013-06-03 Thread dw
I think option #3 is that one I prefer too. Just one thing about SSE-instruction. For 64-bit we can assume that SSE has to be present in any case. Just for 32-bit we should check in headers for the __SSE__ macro, and in the intrinsic-function (none-inline) we should default to none-SSE

[Mingw-w64-public] build wx with tdm-gcc successfully

2013-06-03 Thread zhangxinghai
hello I have just succeeded in building wx 2.9.4 with tdm-gcc-64 4.7.1-3,I'm very glad.Thanks for all help. I invoke the command mingw32-make -f makefile.gcc -j4 BUILD=release SHARED=1 MONOLITHIC=0 UNICODE=1 CXXFLAGS=-m32 -pipe -fno-keep-inline-dllexport -Os LDFLAGS=-m32 CFLAGS=-m32

Re: [Mingw-w64-public] build wx with tdm-gcc successfully

2013-06-03 Thread xunxun
I suggest not to use multiple lib gcc here, unless you know -m32 *windres*needs -F pe-i386. You can choose one gcc with only x86 or x64. On Tue, Jun 4, 2013 at 11:23 AM, zhangxinghai zxh19750...@163.com wrote: hello I have just succeeded in building wx 2.9.4 with tdm-gcc-64 4.7.1-3,I'm very

Re: [Mingw-w64-public] InterlockedBitTestAndXXX

2013-06-03 Thread Ozkan Sezer
On Tue, Jun 4, 2013 at 1:58 AM, dw limegreenso...@yahoo.com wrote: If you can prepare patches for your recent asm stuff against the stable branch, I would happily merge. It might make sense to hold off on this a bit. I have several more that I'm working on. OK, Also, I hate asking

Re: [Mingw-w64-public] build wx with tdm-gcc successfully

2013-06-03 Thread Ruben Van Boxem
2013/6/4 zhangxinghai zxh19750...@163.com hello I have just succeeded in building wx 2.9.4 with tdm-gcc-64 4.7.1-3,I'm very glad.Thanks for all help. I invoke the command mingw32-make -f makefile.gcc -j4 BUILD=release SHARED=1 MONOLITHIC=0 UNICODE=1 CXXFLAGS=-m32 -pipe