Re: [Mingw-w64-public] Semi-OT: Is this sourceforge email legit? (Fwd: Important Account Information - Reconfirm Mailing List Subscriptions)

2017-06-09 Thread K. Frank
/sourceforge.net/blog/sourceforge-project-e-mail-policy-update/ > for further information. Thanks for the clarification / confirmation. I'll treat the sourceforge email as legitimate. > Regards, > Kai Best. K. Frank > 2017-06-09 7:26 GMT+02:00 LRN <le...@something.com>: >> O

[Mingw-w64-public] Semi-OT: Is this sourceforge email legit? (Fwd: Important Account Information - Reconfirm Mailing List Subscriptions)

2017-06-08 Thread K. Frank
Hello List! I just wanted to check whether this email from sourceforge is legit. It seemed a little odd -- out of the blue -- and sourceforge has earned itself an imperfect reputation. Is this okay? Have others got this? Thanks. K. Frank -- Forwarded message -- From

Re: [Mingw-w64-public] Wrong quotient results of `remquo()`?

2016-09-12 Thread K. Frank
is wrong on two counts -- it shows the bug lh_mouse found, and it can have undefined behavior in the integer conversion. My guess is that lh_mouse's test and mine both end up using remquo.S (Why

Re: [Mingw-w64-public] winpthreads, pthread_setschedparam, and detached threads

2016-06-01 Thread K. Frank
Hello Lefty! On Tue, May 31, 2016 at 11:31 PM, lh mouse wrote: > Note that in most cases threads other than the one calling `pthread_detach()` > can terminate at anytime. > ... I would say your description fits the typical use case. > By calling `pthread_detach()` on a

Re: [Mingw-w64-public] winpthreads, pthread_setschedparam, and detached threads

2016-05-31 Thread K. Frank
lling pthread_setschedparam() on itself could be an edge case in some implementations.) Happy Hacking! K. Frank -- What NetFlow Analyzer can do for you? Monitors network bandwidth and traffic patterns at an interface-level

Re: [Mingw-w64-public] Floating-Point Operations Not Deterministic When Excecuted Asynchronously

2016-03-19 Thread K. Frank
he idea should work. Sorry i can't give you any detail on how to make it work. (Of course, the better approach is to figure out how to make the child threads behave -- i.e., use the extended precision, and otherwise use a floating-point environment consistent with t

Re: [Mingw-w64-public] Floating-Point Operations Not Deterministic When Excecuted Asynchronously

2016-03-15 Thread K. Frank
rt of "_fpset(...)" once in your main thread, but you would no longer have to add _fpreset to all of your asynchronous methods. (You might have to do some reverse engineering or ask on this list to find out exactly what floating-point mode you need to set for your

Re: [Mingw-w64-public] Floating-Point Operations Not Deterministic When Excecuted Asynchronously

2016-03-03 Thread K. Frank
; I have found a behaviour of MinGW-W64 5.3.0 that disturbs me very much: >> the results of floating-point operations may differ, if they are run on >> different threads. >> ... > -- > Daniel Happy Floating-Point Hacking! K. Frank --

[Mingw-w64-public] compiling nano-win from linux for windows 7 [done]

2016-01-03 Thread frank
different build scripts, I would suggest. You have done a good job. Thanks and regards frank Regards frank #! /bin/sh export dir=`pwd` export CPPFLAGS="-I$dir/mingw-libgnurx-2.5.1 -I$dir/ncurses-5.9/include -std=c99" export CFLAGS="-O3 -ffunction-sections

Re: [Mingw-w64-public] compiling nano-win from linux for windows 7 64bit

2016-01-02 Thread frank
r nano-win from any linux distro? Regards frank -- ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/min

[Mingw-w64-public] compiling from linux for windows

2016-01-01 Thread frank
: fatal error: pwd.h: No such file or directory #include Now this is a mistery because pwd.h is in /usr/include which is always on make's search path (as last in the queue). Any idea what is happening and how it could be fixed?

Re: [Mingw-w64-public] compiling nano-win from linux for windows 7 64bit

2016-01-01 Thread frank
out regex support since nano can. Thanks again and kind regards frank -- ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net https://lists.sourceforge.net/li

Re: [Mingw-w64-public] compiling nano-win from linux for windows 7 64bit

2016-01-01 Thread frank
compiler cannot create executables Have you tried and succeeded in compiling from Linux (ubuntu) for Windows? Thanks and regards frank -- ___ Mingw-w64-public mailing

[Mingw-w64-public] compiling nano-win from linux for windows 7 64bit

2015-12-31 Thread frank
o-win, nice surprise. I extracted it to ubuntu 14.04 and more precisely to /opt/nano-win. In this directory the command BUILD_IT ends with an error from the linker: /usr/bin/ld: unrecognized option '--enable-auto-image-base' I'll try later to expunge the option from configure. Or maybe you have

Re: [Mingw-w64-public] compiling nano-win from linux for windows 7 64bit

2015-12-31 Thread frank
gex support since nano can. Thanks again and kind regards frank -- ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net https://lists.sourceforge.net/li

[Mingw-w64-public] compiling from linux for windows 7

2015-12-30 Thread frank
: fatal error: pwd.h: No such file or directory #include Now this is a mistery because pwd.h is in /usr/include which is always on make's search path (as last in the queue). Any idea what is happening and how it could be fixed?

[Mingw-w64-public] SEMI-OT: Images of 3d-rotated objects

2015-08-07 Thread K. Frank
to do this in my own (mingw-w64-compatible) code. Thanks in advance for any ideas. K. Frank -- ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net https

Re: [Mingw-w64-public] Latest mingw-w64-install broken on all Window versions

2015-08-05 Thread K. Frank
://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/ You could follow, for example, the mingw-builds link there and pick your desired configuration / version as you navigate down to the downloadable file. Happy 64-bit g++ Hacking! K. Frank

Re: [Mingw-w64-public] Winpthreads slow mutexes - still applies?

2015-06-20 Thread K. Frank
model supported by std::thread and pthreads). As cross-process objects they are heavier weight and less efficient, and this probably accounts for the mutex inefficiency described in the bug report. Best. K. Frank

Re: [Mingw-w64-public] Native Win32 std::thread

2015-03-14 Thread K. Frank
be very welcome here. Thanks for your help and support Marco Happy Multi-Threaded Hacking! K. Frank -- Dive into the World of Parallel Programming The Go Parallel Website, sponsored by Intel and developed in partnership

Re: [Mingw-w64-public] gfortran, open mp and floating point precision

2015-02-02 Thread K. Frank
. Frank 2015-02-02 6:34 GMT+01:00 K. Frank kfrank2...@gmail.com: Hi Pieter! This could be complete misinformation, or correct but not relevant. On Thu, Jan 15, 2015 at 12:57 PM, pbed...@aol.com wrote: I wrote a test program in fortran and used gfortran 4.9.2 (tdm64-gcc 4.9.2

Re: [Mingw-w64-public] gfortran, open mp and floating point precision

2015-02-01 Thread K. Frank
. With regards Pieter Bedijn - retired scientist and software developer Good luck. K. Frank -- Dive into the World of Parallel Programming. The Go Parallel Website, sponsored by Intel and developed in partnership

Re: [Mingw-w64-public] MinGW LGPL licensed, header-only std::thread implementation

2014-12-12 Thread K. Frank
that one can put arbitrary code into headers, but that sort of defeats the purpose of a header-only library.) Ruben Thanks for drawing our attention to this. Best. K. Frank -- Download BIRT iHub F-Type - The Free

Re: [Mingw-w64-public] TDM-GCC 4.9.2 released

2014-12-09 Thread K. Frank
of memory. From John's comment I assume something similar is going on with wxWidgets. Good luck. K. Frank ... On Mon, Dec 8, 2014 at 7:41 PM, John E. / TDM tdra...@tdragon.net wrote: Greetings! === TDM-GCC 4.9.2 is now available! === ... * Remember to use the -fno-keep-inline

Re: [Mingw-w64-public] [Wt-interest] Building Wt with mingw-w64 -- prefer Mingw-builds or Win-builds?

2014-11-25 Thread K. Frank
Hi nixMan! On Tue, Nov 25, 2014 at 4:55 AM, niXman i.nix...@autistici.org wrote: K. Frank 2014-11-24 04:32: No, no proxy. I use a wireless router that provides local, internal ip addresses through dhcp, but is seen by the outside world as a single ip address (dynamically) assigned by my isp

Re: [Mingw-w64-public] FPU control word on startup

2014-11-24 Thread K. Frank
, though), http://www.cs.berkeley.edu/~wkahan/JAVAhurt.pdf Thank you Yaron -- this is an excellent reference. It's well worth reading (as is most anything by Kahan). Happy Floating-Point Hacking! K. Frank -- Download

Re: [Mingw-w64-public] FPU control word on startup

2014-11-24 Thread K. Frank
, but, much more importantly, based on the recommendation of the experts such as Kahan. But I would also vote for giving the end-user properly documented mechanisms to override the default.) Cheers, Carl Best. Happy Extended-Precision Floating-Point Hacking! K. Frank ... 2014-11-24 15

Re: [Mingw-w64-public] [Wt-interest] Building Wt with mingw-w64 -- prefer Mingw-builds or Win-builds?

2014-11-23 Thread K. Frank
Hi Adrian! (Note, I haven't copied this response to the Wt list as it doesn't really concern Wt.) I would like to follow up on gcc 4.9.0 vs. 4.9.2. On Sun, Nov 23, 2014 at 6:22 AM, Adrien Nader adr...@notk.org wrote: Hi, On Sat, Nov 22, 2014, K. Frank wrote: Hello Lists! Should I use

Re: [Mingw-w64-public] [Wt-interest] Building Wt with mingw-w64 -- prefer Mingw-builds or Win-builds?

2014-11-23 Thread K. Frank
Hi Ruben! On Sun, Nov 23, 2014 at 3:07 PM, Ruben Van Boxem vanboxem.ru...@gmail.com wrote: 2014-11-23 17:19 GMT+01:00 K. Frank kfrank2...@gmail.com: ... ... Will I be more likely to be successful using the Mingw-builds or the Win-builds version of the toolchain? All else being equal, I

Re: [Mingw-w64-public] [Wt-interest] Building Wt with mingw-w64 -- prefer Mingw-builds or Win-builds?

2014-11-23 Thread K. Frank
Hello niXman! (And thanks for the mingw-builds!) On Sun, Nov 23, 2014 at 6:41 PM, niXman i.nix...@autistici.org wrote: K. Frank 2014-11-24 02:38: (Note, mingw-builds says to use its installer, mingw-w64-install.exe, but it seems to be broken, popping up a message box that says ERROR res. So

Re: [Mingw-w64-public] [Wt-interest] Building Wt with mingw-w64 -- prefer Mingw-builds or Win-builds?

2014-11-23 Thread K. Frank
Hello niXman! On Sun, Nov 23, 2014 at 7:26 PM, niXman i.nix...@autistici.org wrote: K. Frank 2014-11-24 02:53: I would be happy to give you the md5 if you could tell me an easy way to calculate it. I am running on 64-bit windows 7. using MSYS/2: md5sum mingw-w64-install.exe For mingw-w64

Re: [Mingw-w64-public] [Wt-interest] Building Wt with mingw-w64 -- prefer Mingw-builds or Win-builds?

2014-11-23 Thread K. Frank
Hi niXman! On Sun, Nov 23, 2014 at 8:11 PM, niXman i.nix...@autistici.org wrote: K. Frank 2014-11-24 04:06: C33AEC60739C44F208F171A74235B742 correct. you use proxy? No, no proxy. I use a wireless router that provides local, internal ip addresses through dhcp, but is seen by the outside

[Mingw-w64-public] [Wt-interest] Building Wt with mingw-w64 -- prefer Mingw-builds or Win-builds?

2014-11-22 Thread K. Frank
of pre-built packages, but according to the Wt wiki: http://redmine.webtoolkit.eu/projects/wt/wiki/Installing_Wt_on_MinGW Wt's only dependency is boost, so the Win-builds packages don't look relevant to my Wt project. Any suggestions or advice would be very welcome. Thanks. K. Frank

Re: [Mingw-w64-public] [Wt-interest] Status of Wt with mingw-w64?

2014-11-09 Thread K. Frank
to mingw32-make, should things build correctly, or would I have to port the code from msvc to mingw-w32? If anyone (on either list) has tried building Wt with mingw-w64, please summarize your experience -- either positive or negative. Thanks. K. Frank On Sun, Nov 9, 2014 at 12:00 AM, K. Frank

[Mingw-w64-public] [Wt-interest] Status of Wt with mingw-w64?

2014-11-08 Thread K. Frank
compilation/linking issues. There are some comments about mingw-w64 in the mail archive for this list, but they are mostly about (unsolved) problems. Is Wt likely to work with mingw-w64, or would I be asking for trouble to try it? Thanks. K. Frank

Re: [Mingw-w64-public] How to detect which threading model is used with the preprocessor?

2014-06-30 Thread K. Frank
Hi Etienne! On Mon, Jun 30, 2014 at 4:09 AM, Etienne Sandré-Chardonnal etienne.san...@m4x.org wrote: On Fri, 27 Jun 2014 14:00:06, K. Frank wrote: ... It's not entirely clear to me what your problem is. (In your original question you asked whether you could detect pthreads vs. win32 threads

Re: [Mingw-w64-public] How to detect which threading model is used with the preprocessor?

2014-06-27 Thread K. Frank
in the same application both on linux and windows. Could you sketch out the precise use case that you're concerned about? Thanks, Etienne Happy Mixed-Thread Multithreaded Hacking! K. Frank -- Open source business

Re: [Mingw-w64-public] How to detect which threading model is used with the preprocessor?

2014-06-26 Thread K. Frank
-w64) std::mutex or pthreads mutex, because (as I believe) winpthreads does not use the windows synchronization structures under the hood. Happy Hacking! K. Frank -- Open source business process management suite built

Re: [Mingw-w64-public] printf(%*.*f,d) broken?

2014-05-09 Thread K. Frank
no matter what I put in for numbers. I don't think that's right. Jim Michaels ... Good luck. K. Frank -- Is your legacy SCM system holding you back? Join Perforce May 7 to find out: #149; 3 signs your SCM is hindering your

Re: [Mingw-w64-public] Trouble with pow()

2014-03-24 Thread K. Frank
before ^C Here, the ^C indicates that I killed pow_test because it had hung. Thanks for the heads-up. I'll know to be on the lookout for this bug, at least until my next upgrade. Greetings, Roland Best. K. Frank

Re: [Mingw-w64-public] libwinpthreads dependency should be optional

2014-03-23 Thread K. Frank
of the c++11 standard, i.e., that didn't support std::thread. Happy Multi-Threaded Hacking! K. Frank -- Learn Graph Databases - Download FREE O'Reilly Book Graph Databases is the definitive new guide to graph databases

Re: [Mingw-w64-public] Building a library for use under Visual Studio 2008

2014-02-26 Thread K. Frank
luck. K. Frank -- Flow-based real-time traffic analytics software. Cisco certified tool. Monitor traffic, SLAs, QoS, Medianet, WAAS etc. with NetFlow Analyzer Customize your own dashboards, set traffic alerts and generate

Re: [Mingw-w64-public] Macro 'WIN32' not defined when specify -std=c++11

2014-01-15 Thread K. Frank
/files/Toolchains%20targetting%20Win32/Personal%20Builds/mingw-builds/4.8.2/threads-posix/sjlj/i686-4.8.2-release-posix-sjlj-rt_v3-rev2.7z/download I used: C:\g++ --version g++ (rubenvb-4.8-stdthread) 4.8.1 20130324 (prerelease) Regards, Leopold Happy Hacking! K. Frank

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

2013-12-04 Thread K. Frank
can't really say which would be better suited to your purposes. Thank you. Good luck., and ... Happy Mingw/w64 Hacking! K. Frank -- Sponsored by Intel(R) XDK Develop, test and display web and hybrid apps

Re: [Mingw-w64-public] C++11 threading with non-posix versions

2013-11-16 Thread K. Frank
presumably been tuned up some since then, and the win32 implementation was competent, but not highly optimized. Happy Multi-Threaded Hacking! K. Frank -- DreamFactory - Open Source REST JSON Services for HTML5 Native

Re: [Mingw-w64-public] libwinpthreads mutexes

2013-09-12 Thread K. Frank
Hi Vadim! On Thu, Sep 12, 2013 at 11:16 AM, Vadim wrote: On Thu, Sep 12, 2013 at 9:32 AM, K. Frank wrote: Hello Kai and Vadim! ... 2013/9/12 Vadim : Hi, I am investigating performance problems in binary compiled with mingw-w64, and libwinpthreads mutex comes at the top of my

Re: [Mingw-w64-public] it does not have memory

2013-09-08 Thread K. Frank
know why, but it looks like memory and other c++-specific things are being put in their own c++ subdirectory of include. Again, I don't know the details, but g++ knows somehow to look there automatically. Good luck. K. Frank

Re: [Mingw-w64-public] The API supported by g++11_64bit

2013-09-06 Thread K. Frank
and some of the gniu extensions.) TIA (Thanks in advance ) Happy C++11 Hacking! K. Frank -- Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more! Discover the easy way to master current and previous

Re: [Mingw-w64-public] [PATCH 1/2] synchapi.h: APIs are not forbidden on Windows Store

2013-08-19 Thread K. Frank
) produces some kind of security issue. I am just wondering what the philosophy behind the limitation is. Any thoughts? Thanks. K. Frank -- Get 100% visibility into Java/.NET code with AppDynamics Lite! It's a free

[Mingw-w64-public] Fwd: ERR_remove_thread_state not found in LIBEAY32.dll with mingw-w64

2013-08-10 Thread K. Frank
-- From: K. Frank Date: Fri, Aug 9, 2013 at 8:48 PM Subject: ERR_remove_thread_state not found in LIBEAY32.dll with mingw-w64 To: curl-library Hello List! I am new to libcurl, and am trying to use it with mingw-w64. I have written an compiled a very simple test program and when I run it I

Re: [Mingw-w64-public] Semi-OT -- libcurl and mingw-w6 / c++

2013-08-08 Thread K. Frank
Hello niXman! On Wed, Aug 7, 2013 at 2:30 PM, niXman i.nix...@gmail.com wrote: 2013/8/7 K. Frank Do I anticipate any issues using libcurl with mingw-w64? If so, what should I look out for and how might I deal with it? No, libcurl is easy to build with mingw-w64. Thanks

[Mingw-w64-public] Semi-OT -- libcurl and mingw-w6 / c++

2013-08-07 Thread K. Frank
scheme that seems to be the libcurl way of doing it? This is on 64-bit windows 7, and the curl.exe that I downloaded appears to be a 64-bit program. Thanks for any suggestions. K. Frank -- Get 100% visibility into Java

[Mingw-w64-public] Any color on not-so-long long doubles (about 18 decimal digits)?

2013-07-20 Thread K. Frank
. K. Frank -- See everything from the browser to the database with AppDynamics Get end-to-end visibility with application monitoring from AppDynamics Isolate bottlenecks and diagnose root cause in seconds. Start your free

Re: [Mingw-w64-public] Any color on not-so-long long doubles (about 18 decimal digits)?

2013-07-20 Thread K. Frank
Hi Jon! Thanks for your reply. On Sat, Jul 20, 2013 at 12:17 PM, JonY jo...@users.sourceforge.net wrote: On 7/20/2013 23:43, K. Frank wrote: Hello List! On 64-bit mingw-w64: g++ (rubenvb-4.8-stdthread) 4.8.1 20130324 (prerelease) on 64-bit windows 7, I'm seeing that long doubles have

Re: [Mingw-w64-public] Any color on not-so-long long doubles (about 18 decimal digits)?

2013-07-20 Thread K. Frank
thought it was just providing support constructs. Anyway, be aware that license is LGPL 2.1 or later. Thanks for the clarifications. (Again, I don't feel that I'm in need of greater precision. I'm just trying to make sure I understand what I'm looking at.) Adios! K. Frank

Re: [Mingw-w64-public] Can't output (ostream ) std::chrono::duration

2013-07-15 Thread K. Frank
Hi Ruben! On Mon, Jul 15, 2013 at 3:41 AM, Ruben Van Boxem vanboxem.ru...@gmail.com wrote: 2013/7/5 K. Frank kfrank2...@gmail.com Hello List! The following code snippet fails to compile: auto us = std::chrono::microseconds(7); std::cout us std::endl; // error (But std::cout

[Mingw-w64-public] Can't output (ostream ) std::chrono::duration

2013-07-04 Thread K. Frank
) There is nothing urgent about this for me -- using duration.count() works just fine for my purposes. I'm just wondering how things are supposed to work. Thanks. K. Frank -- This SF.net email is sponsored by Windows: Build

[Mingw-w64-public] strftime doesn't parse %T

2013-07-03 Thread K. Frank
:%M:%S, mytm); std::cout cnt1 = cnt1 , buf1 = buf1 std::endl; char buf2[129]; int cnt2 = strftime (buf2, 128, %Y%m%d-%T, mytm); std::cout cnt2 = cnt2 , buf2 = buf2 std::endl; } === === Thanks for any feedback. K. Frank

Re: [Mingw-w64-public] strftime doesn't parse %T

2013-07-03 Thread K. Frank
Hi Ozkan! Thank you for your explanation. On Wed, Jul 3, 2013 at 2:26 PM, Ozkan Sezer wrote: On Wed, Jul 3, 2013 at 9:08 PM, K. Frank wrote: Hello List! strftime does not seem to parse the %T format specifier. ... Thanks for any feedback. K. Frank strftime() is imported from

Re: [Mingw-w64-public] End of rubenvb builds

2013-06-23 Thread K. Frank
Happy Hacking! K. Frank -- This SF.net email is sponsored by Windows: Build for Windows Store. http://p.sf.net/sfu/windows-dev2dev ___ Mingw-w64-public mailing list Mingw-w64

Re: [Mingw-w64-public] [Interest] Several issues compiling Qt 4.8.4 with mingw-w64 4.8.1, possible related to -std=gnu++11

2013-04-16 Thread K. Frank
- [mailto:interest-bounces+kai.koehne=digia@qt-project.org] On Behalf Of K. Frank Hello Kai! ... First, I understand that Qt's limited usage of the std namespace means (hopefully) that it avoids the ABI differences between -std=c++11 and - std=gnu++98. My concern is the header files

Re: [Mingw-w64-public] winpthreads testsuite

2013-04-14 Thread K. Frank
.) Thanks. K. Frank -- Precog is a next-generation analytics platform capable of advanced analytics on semi-structured data. The platform includes APIs for building apps and a phenomenal toolset for data science. Developers

Re: [Mingw-w64-public] winpthreads testsuite

2013-04-14 Thread K. Frank
Hi LRN! On Sun, Apr 14, 2013 at 10:16 AM, LRN wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 14.04.2013 17:55, K. Frank wrote: Hello LRN! On Sun, Apr 14, 2013 at 2:54 AM, LRN ... wrote: ... This patch should integrate the testsuite imported from pthreads with winpthreads

[Mingw-w64-public] [Interest] Not getting large file support when configuring Qt 4.8.4 for win32-g++-4.6

2013-04-14 Thread K. Frank
need to specify it manually. Or maybe my system is messed up somehow. Thanks for any advice. K. Frank -- Precog is a next-generation analytics platform capable of advanced analytics on semi-structured data

Re: [Mingw-w64-public] [Interest] Not getting large file support when configuring Qt 4.8.4 for win32-g++-4.6

2013-04-14 Thread K. Frank
Hi Jon! On Sun, Apr 14, 2013 at 6:11 PM, JonY wrote: On 4/15/2013 00:46, K. Frank wrote: Hello Lists! I'm am building Qt 4.8.4 with mingw-w64 4.8.1 on a 64-bit windows 7 machine. (Specifically, qt-everywhere-opensource-src-4.8.4.zip and x86_64-w64-mingw32-gcc-4.8-stdthread-win64_rubenvb

[Mingw-w64-public] Still seeing the -static issue with Ruben's new 4.8 std::thread-enabled build

2013-04-06 Thread K. Frank
builds, namely: x86_64-w64-mingw32-gcc-4.7.0-stdthread_rubenvb.7z Is there any way I can use the std::thread support without linking statically? Thanks. K. Frank -- Minimize network downtime and maximize team

Re: [Mingw-w64-public] Still seeing the -static issue with Ruben's new 4.8 std::thread-enabled build

2013-04-06 Thread K. Frank
Hi Ruben! On Sat, Apr 6, 2013 at 6:25 PM, K. Frank kfrank2...@gmail.com wrote: Hi Ruben! On Sat, Apr 6, 2013 at 6:21 PM, Ruben Van Boxem vanboxem.ru...@gmail.com wrote: Op 7 apr. 2013 00:18 schreef K. Frank kfrank2...@gmail.com het volgende: Hello List and Ruben! ... It stills seems

Re: [Mingw-w64-public] New Rubenvb GCC 4.8 std::thread enabled build

2013-03-26 Thread K. Frank
is really the right word ... Ruben Thanks. K. Frank -- Own the Future-Intelreg; Level Up Game Demo Contest 2013 Rise to greatness in Intel's independent game demo contest. Compete for recognition, cash, and the chance

Re: [Mingw-w64-public] GCC 4.8 and -fPIC warning being treated as error

2013-03-23 Thread K. Frank
it might make sense to wait for. Thanks, Ruben Thanks to you for all of your contributions. K. Frank -- Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free

Re: [Mingw-w64-public] New Rubenvb GC 4.8.0 Personal build

2013-03-23 Thread K. Frank
%20sources/Personal%20Builds/rubenvb/release/ Enjoy, Ruben Thanks again for these builds and all of your efforts. K. Frank -- Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download

Re: [Mingw-w64-public] New Rubenvb GC 4.8.0 Personal build

2013-03-23 Thread K. Frank
Hi Ruben! On Sat, Mar 23, 2013 at 2:45 PM, Ruben Van Boxem vanboxem.ru...@gmail.com wrote: 2013/3/23 K. Frank kfrank2...@gmail.com Hi Ruben! Yay! Go Ruben! On Sat, Mar 23, 2013 at 12:49 PM, Ruben Van Boxem vanboxem.ru...@gmail.com wrote: Hi everyone, I am glad to announce my GCC

Re: [Mingw-w64-public] New Rubenvb GC 4.8.0 Personal build

2013-03-23 Thread K. Frank
Ruben - Thanks. On Sat, Mar 23, 2013 at 6:48 PM, Ruben Van Boxem vanboxem.ru...@gmail.com wrote: Op 23 mrt. 2013 23:30 schreef K. Frank kfrank2...@gmail.com het volgende: Hi Ruben! ... No sorry. I'll build an alternate toolchain this week. Okay, thanks. I'll keep my eyes open

Re: [Mingw-w64-public] [Interest] Compiling Qt (4 or 5) with -std=c++11

2013-03-22 Thread K. Frank
Hello Ruben! On Fri, Mar 22, 2013 at 6:22 AM, Ruben Van Boxem vanboxem.ru...@gmail.com wrote: 2013/3/22 JonY jo...@users.sourceforge.net On 3/22/2013 11:26, K. Frank wrote: If you're interested in a binary compatibility topic that might affect you -- and since you so kindly brought

[Mingw-w64-public] What's a good 64-bit native build to upgrade to?

2013-03-22 Thread K. Frank
will plan to rebuild my third-party c++ libraries. What would people recommend as the best way to go? Is there anything on the short-term horizon that I should make a point of waiting for? Thanks. K. Frank -- Everyone hates

Re: [Mingw-w64-public] [Interest] Compiling Qt (4 or 5) with -std=c++11

2013-03-22 Thread K. Frank
Hi Ruben! Great. Thanks for clearing things up. On Fri, Mar 22, 2013 at 10:09 AM, Ruben Van Boxem vanboxem.ru...@gmail.com wrote: 2013/3/22 K. Frank kfrank2...@gmail.com Hello Ruben! ... No, I never implied such a thing. I was talking about x86 only. There is no dw2 for x64 and in all

[Mingw-w64-public] [Interest] Compiling Qt (4 or 5) with -std=c++11

2013-03-21 Thread K. Frank
with -std=++11. (I also use qwt, currently version 6.0.1, but will ask about that in particular in a separate post.) Thanks in advance for any advice. K. Frank -- Everyone hates slow websites. So do we. Make your web apps

Re: [Mingw-w64-public] [Interest] Compiling Qt (4 or 5) with -std=c++11

2013-03-21 Thread K. Frank
Hi Thiago! (I've taken the liberty of cross-posting this back to the mingw-w64-public list.) On Thu, Mar 21, 2013 at 5:07 PM, Thiago Macieira thiago.macie...@intel.com wrote: On quinta-feira, 21 de março de 2013 16.52.29, K. Frank wrote: Hello Lists! Should I expect to be able to build Qt

Re: [Mingw-w64-public] [Interest] Compiling Qt (4 or 5) with -std=c++11

2013-03-21 Thread K. Frank
Hello Christian! On Thu, Mar 21, 2013 at 5:37 PM, Christian Quast christian.qu...@cquast-it.de wrote: Hi... On Thursday 21 March 2013 22:07:54 Thiago Macieira wrote: On quinta-feira, 21 de março de 2013 16.52.29, K. Frank wrote: [...] As I understand it, using -std=c++11 causes abi

Re: [Mingw-w64-public] [Interest] Compiling Qt (4 or 5) with -std=c++11

2013-03-21 Thread K. Frank
Hello Ruben! On Thu, Mar 21, 2013 at 5:37 PM, Ruben Van Boxem vanboxem.ru...@gmail.com wrote: Op 21 mrt. 2013 22:31 schreef K. Frank kfrank2...@gmail.com het volgende: Hi Thiago! ... On Thu, Mar 21, 2013 at 5:07 PM, Thiago Macieira thiago.macie...@intel.com wrote: On quinta-feira, 21 de

Re: [Mingw-w64-public] [Interest] Compiling Qt (4 or 5) with -std=c++11

2013-03-21 Thread K. Frank
to build Qt and my applications. Other than some problems with very slow start-up times, it seems to work. Thanks, Etienne I appreciate hearing that this works for you. K. Frank Date: Thu, 21 Mar 2013 16:52:29 -0400 From: K. Frank kfrank2...@gmail.com Subject: [Interest] [Mingw-w64

Re: [Mingw-w64-public] [Interest] Compiling Qt (4 or 5) with -std=c++11

2013-03-21 Thread K. Frank
Hello Thiago! Thank you for the detailed explanation. On Thu, Mar 21, 2013 at 9:44 PM, Thiago Macieira thiago.macie...@intel.com wrote: On quinta-feira, 21 de março de 2013 17.30.12, K. Frank wrote: Hi Thiago! ... As I understand it, using -std=c++11 causes abi breakage, so to do this, I

Re: [Mingw-w64-public] Install MinGW w64

2013-02-12 Thread K. Frank
depends on libiconv, so I suppose I'm using libiconv, as well. (These are c, rather than c++ libraries, so my concerns about abi incompatibilities between various version of mingw-w64 were unlikely to cause problems, and seem not to have.,) Thanks, Jorge Hernandez Good luck. K. Frank

Re: [Mingw-w64-public] Compiling on 64-bit windows

2013-02-11 Thread K. Frank
for 64 bits. (By the way, this is the mailing list for the mingw-w64 project. The mingw project has a separate mailing list, although a number of people subscribe to both.) Good luck. K. Frank -- Free Next-Gen Firewall

Re: [Mingw-w64-public] Semi-OT: Can one use separate threads for reading and writing a standard winsock socket?

2013-02-06 Thread K. Frank
Hi Earnie! On Wed, Feb 6, 2013 at 7:32 AM, Earnie Boyd ear...@users.sourceforge.net wrote: On Tue, Feb 5, 2013 at 8:44 PM, K. Frank wrote: Hello List! Not really a pure mingw-w64 question, but maybe someone here knows the answers. Socket connections go two ways -- you can read from

Re: [Mingw-w64-public] Semi-OT: Can one use separate threads for reading and writing a standard winsock socket?

2013-02-06 Thread K. Frank
Hi Kai! On Wed, Feb 6, 2013 at 9:56 AM, Kai Tietz ktiet...@googlemail.com wrote: Streams in binary mode for native Windows sockets? errhh Anyway Frank, be sure that works. Sockets are bi-directional and you can write to them in one thread and poll for data in another thread without issues

[Mingw-w64-public] Semi-OT: Can one use separate threads for reading and writing a standard winsock socket?

2013-02-05 Thread K. Frank
coupled somehow under the hood? Thanks. K. Frank -- Free Next-Gen Firewall Hardware Offer Buy your Sophos next-gen firewall before the end March 2013 and get the hardware for free! Learn more. http://p.sf.net/sfu/sophos

[Mingw-w64-public] Is it safe to mix -std=c++0x and non-c++0x object code?

2013-02-04 Thread K. Frank
Hello List! If I have several source files that get compiled to object files and then linked together to for m an executable, is it safe to compile some of them with -std=c++0x and others without? Or does turning on -std=c++0x introduce some kind of abi breakage? Thanks. K. Frank

Re: [Mingw-w64-public] Is it safe to mix -std=c++0x and non-c++0x object code?

2013-02-04 Thread K. Frank
Hello Kai and Alexander! On Mon, Feb 4, 2013 at 11:28 AM, Kai Tietz ktiet...@googlemail.com wrote: 2013/2/4 K. Frank kfrank2...@gmail.com: Hello List! ... Or does turning on -std=c++0x introduce some kind of abi breakage? ... Well, there might be troubles by doing so. There is - IIRC

[Mingw-w64-public] [Quickfix-developers] QuickFIX using mingw-w64

2013-01-27 Thread K. Frank
. Thanks for folks suggestions that helped get me going. Best regards. K. Frank -- Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current

Re: [Mingw-w64-public] Qt wiki

2013-01-20 Thread K. Frank
-project.org/mailman/listinfo/interest You should consider subscribing to that list, and asking your Qt-specific questions there. ... Thanks, --Suresh Happy (Qt) Hacking! K. Frank -- Master Visual Studio

[Mingw-w64-public] Dead code path in msxml2.h?

2013-01-13 Thread K. Frank
or some other .h file I need to include first? Is this a bug in msxml2.h? Is there a work-around? Thanks for any help with this. K. Frank. -- Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, MVC

Re: [Mingw-w64-public] libxml2 with mingw-w64?

2013-01-09 Thread K. Frank
Ruben - Thanks for your comments. Just to follow up a little, below ... On Wed, Jan 9, 2013 at 1:35 AM, Ruben Van Boxem vanboxem.ru...@gmail.com wrote: Op 9 jan. 2013 03:19 schreef K. Frank kfrank2...@gmail.com het volgende: Hi Ruben (and Kai)! On Tue, Jan 8, 2013 at 1:55 PM, Ruben Van

Re: [Mingw-w64-public] libxml2 with mingw-w64?

2013-01-09 Thread K. Frank
Brian - Thank you for your response. On Tue, Jan 8, 2013 at 11:14 AM, Prof Brian Ripley rip...@stats.ox.ac.uk wrote: On 08/01/2013 15:24, K. Frank wrote: ... Great. If I end up needing libxml2, I'll plan to build it myself. Do you happen to know if I should expect the build to be totally

[Mingw-w64-public] msxml with mingw-w64 (for QuickFIX) (was: libxml2 with mingw-w64?)

2013-01-09 Thread K. Frank
Hi Pavel (and List)! (Since my follow-up to Pavel's comments are about msxml, I am starting a new thread here to separate the discussion from that about libxml2.) On Wed, Jan 9, 2013 at 8:48 AM, pavel ... wrote: Frank, see my comments bellow. On Wed, 2013-01-09 at 08:04 -0500, K. Frank wrote

[Mingw-w64-public] libxml2 with mingw-w64?

2013-01-08 Thread K. Frank
. As expected, most of the fixes involve changing some of the occurrences of _MSC_VER to _WIN32. So far, it's been relatively straightforward, but a certain amount of donkey work.) Thanks for any suggestions. K. Frank

Re: [Mingw-w64-public] libxml2 with mingw-w64?

2013-01-08 Thread K. Frank
Hi Jon! On Tue, Jan 8, 2013 at 9:23 AM, JonY jo...@users.sourceforge.net wrote: On 1/8/2013 21:30, K. Frank wrote: Hello List! I'm under the impression that libxml2 works (can be made to work) with mingw-w64, but that it does not come with mingw-w64 out of the box. Is this correct

Re: [Mingw-w64-public] libxml2 with mingw-w64?

2013-01-08 Thread K. Frank
Kai - Thanks for your response. On Tue, Jan 8, 2013 at 10:57 AM, Kai Tietz ktiet...@googlemail.com wrote: 2013/1/8 K. Frank kfrank2...@gmail.com: Ah, okay. I will see if I can get the msxml version of quickfix to build. Would you happen to know if a stock windows 7 would come with msxml

Re: [Mingw-w64-public] libxml2 with mingw-w64?

2013-01-08 Thread K. Frank
Pavel - Thanks for your reply. On Tue, Jan 8, 2013 at 1:12 PM, pavel pa...@pamsoft.cz wrote: On Tue, 2013-01-08 at 10:24 -0500, K. Frank wrote: Great. If I end up needing libxml2, I'll plan to build it myself. Do you happen to know if I should expect the build to be totally

Re: [Mingw-w64-public] libxml2 with mingw-w64?

2013-01-08 Thread K. Frank
Thanks again for everyone's help. K. Frank -- Master Java SE, Java EE, Eclipse, Spring, Hibernate, JavaScript, jQuery and much more. Keep your Java skills current with LearnJavaNow - 200+ hours of step-by-step video

Re: [Mingw-w64-public] [Mingw-users] Thoughts on how to build a linux / visual studio project (QuickFIX) with mingw

2013-01-06 Thread K. Frank
that bad. The only unix / windows differences that I've come across are sockets, threads, and the stdafx.h stuff, so I think I should be able to sort things out. To Frank: I suggest writing some kind of build script or file from the VC project files, which have a high chance of having all

  1   2   3   >