Re: [Mingw-w64-public] msys2 / mingw32 targets 0x601 unexpectedly

2019-01-10 Thread Earnie via Mingw-w64-public
hich one of these changed a default. It is a default and every seasoned developer would tell you not to depend on defaults. The defaults are set to aid the majority of cases and as Windows and MinGW progresses the defaults for _WIN32_WINNT are likely to change to indicate wh

Re: [Mingw-w64-public] set default sysroot

2018-12-16 Thread Earnie via Mingw-w64-public
ing. Gcc is using relative paths to find the headers and libraries. Use the verbose switch to determine the paths being used and you'll notice the multiple ../ paths. -- Earnie ___ Mingw-w64-public mailing list Mingw-w64-public@lists.s

Re: [Mingw-w64-public] i686 gcc version 8.2?

2018-12-12 Thread Earnie via Mingw-w64-public
On 12/11/2018 9:25 PM, Liu Hao wrote: 在 2018/12/12 6:04, Earnie via Mingw-w64-public 写道: On 12/11/2018 4:50 PM, Mateusz Mikuła wrote: https://musl.cc works fine, check your DNS. mingw-builds scripts and instructions are available in this repository: https://github.com/niXman/mingw-builds/tree

Re: [Mingw-w64-public] i686 gcc version 8.2?

2018-12-11 Thread Earnie via Mingw-w64-public
/msys2/wiki/Creating-Packages. -- Earnie ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/mingw-w64-public

Re: [Mingw-w64-public] Description of files in a mingw-w64 distribution

2018-11-26 Thread Earnie via Mingw-w64-public
On 11/26/2018 1:34 PM, Edward Diener wrote: On 11/26/2018 10:06 AM, Earnie via Mingw-w64-public wrote: On 11/24/2018 5:27 PM, Edward Diener wrote: On 11/24/2018 5:18 PM, Earnie via Mingw-w64-public wrote: On 11/24/2018 3:17 PM, Edward Diener wrote: Is there anywhere a description of the files

Re: [Mingw-w64-public] Description of files in a mingw-w64 distribution

2018-11-26 Thread Earnie via Mingw-w64-public
On 11/24/2018 5:27 PM, Edward Diener wrote: On 11/24/2018 5:18 PM, Earnie via Mingw-w64-public wrote: On 11/24/2018 3:17 PM, Edward Diener wrote: Is there anywhere a description of the files in a mingw-w64 distribution, with perhaps an explanation of whether any given file is used at compile

Re: [Mingw-w64-public] Description of files in a mingw-w64 distribution

2018-11-24 Thread Earnie via Mingw-w64-public
` to determine which package a file is related to. You can then use `pacman -Qi PACKAGE` to get a description of the package. If a program is executable, usually add --help or sometimes -h or perhaps -? will give a description of the executable purpose and options. -- Earnie

Re: [Mingw-w64-public] Fixing bug in binutils for mingw-64 distro

2018-11-23 Thread Earnie via Mingw-w64-public
The failure is in applying the first patch file. The patch program isn't liking the Windows style path. Add `--debug` to see the actual command line being executed. -- Earnie ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourcefor

Re: [Mingw-w64-public] Fixing bug in binutils for mingw-64 distro

2018-11-23 Thread Earnie via Mingw-w64-public
. The makepkg-mingw script eventually passes the process to makepkg with an option to use the /etc/makepkg-mingw{32,64}.conf file. -- Earnie ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net https://lists.sourceforge.net/lists

Re: [Mingw-w64-public] Why is inet_pton() not declared?

2018-11-21 Thread Earnie via Mingw-w64-public
be doing wrong with this report. -- Earnie ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/mingw-w64-public

Re: [Mingw-w64-public] [PATCH] timeb.h: declare _ftime32 function, define _ftime according to _USE_32BIT_TIME_T

2018-11-06 Thread Earnie via Mingw-w64-public
On 11/6/2018 4:42 AM, Mateusz wrote: W dniu 06.11.2018 o 04:58, Earnie via Mingw-w64-public pisze: On 11/5/2018 11:49 AM, Mateusz wrote: functions. In my patch we use _ftime32 and _ftime64 functions and we define _ftime to _ftime32 or _ftime64. It should work on WinXP because _ftime32

Re: [Mingw-w64-public] [PATCH] timeb.h: declare _ftime32 function, define _ftime according to _USE_32BIT_TIME_T

2018-11-05 Thread Earnie via Mingw-w64-public
s idea still work there? -- Earnie ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/mingw-w64-public

Re: [Mingw-w64-public] [PATCH] timeb.h: declare _ftime32 function, define _ftime according to _USE_32BIT_TIME_T

2018-11-05 Thread Earnie via Mingw-w64-public
DLL residing on the OS which includes Windows 7. This https://sourceforge.net/p/mingw/bugs/1973/ might be helpful. -- Earnie ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/mingw-

Re: [Mingw-w64-public] [PATCH] Always define __USE_MINGW_ANSI_STDIO as 0 or 1 in _mingw.h

2018-11-02 Thread Earnie via Mingw-w64-public
On 11/2/2018 11:10 AM, Liu Hao wrote: > 在 2018/11/2 22:41, Earnie via Mingw-w64-public 写道: >> Maybe add after the "before including any system headers." something >> like "A value other than 1 causes undefined behavior." >> > > This is overpedantic.

Re: [Mingw-w64-public] [PATCH] Always define __USE_MINGW_ANSI_STDIO as 0 or 1 in _mingw.h

2018-11-02 Thread Earnie via Mingw-w64-public
than a literal `1`. > > > [1] https://sourceforge.net/p/mingw-w64/wiki2/printf%20and%20scanf%20family/ Maybe add after the "before including any system headers." something like "A value other than 1 causes undefined behavior." -- Earnie

Re: [Mingw-w64-public] [PATCH] Always define __USE_MINGW_ANSI_STDIO as 0 or 1 in _mingw.h

2018-11-01 Thread Earnie via Mingw-w64-public
On 11/1/2018 1:22 PM, Mateusz wrote: > W dniu 01.11.2018 o 16:06, Earnie via Mingw-w64-public pisze: >> On 11/1/2018 10:53 AM, Earnie wrote: >>> >>> >>> On 11/1/2018 10:33 AM, Liu Hao wrote: >>>> 在 2018/11/1 9:52, Mateusz 写道: >>>>

Re: [Mingw-w64-public] [PATCH] Always define __USE_MINGW_ANSI_STDIO as 0 or 1 in _mingw.h

2018-11-01 Thread Earnie via Mingw-w64-public
On 11/1/2018 10:53 AM, Earnie wrote: > > > On 11/1/2018 10:33 AM, Liu Hao wrote: >> 在 2018/11/1 9:52, Mateusz 写道: >>> During discussion about inttypes I realized that we check (in header files) >>> if >>> __USE_MINGW_ANSI_STDIO is act

Re: [Mingw-w64-public] [PATCH] Always define __USE_MINGW_ANSI_STDIO as 0 or 1 in _mingw.h

2018-11-01 Thread Earnie via Mingw-w64-public
> defined as something other than `0` or `1`, if it is defined at all, > including empty? If by `empty' you mean `#define FOO` as being empty the value is actually 1. If __USE_MINGW_ANSI_STDIO is set to some unexpected value then _mingw.h could handle it and set to the standard value of 1 or give a

Re: [Mingw-w64-public] inttypes Format Specifiers

2018-10-31 Thread Earnie via Mingw-w64-public
we could > just use the `ll` modifier cosistently. Is it possible to allow a skip for the test if the test machine doesn't support that test? Or is that what Jacek did? -- Earnie ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/mingw-w64-public

Re: [Mingw-w64-public] [PATCH] widl: Allow overriding the default include path

2018-10-08 Thread Earnie via Mingw-w64-public
here. The misuse of a long standing switch is *bad*. Someone would come along expecting it to work as it does everywhere else. Please let this be the last consideration of the misuse of `--includedir`. -- Earnie ___ Mingw-w64-public mailing list Mingw

Re: [Mingw-w64-public] mkdir and MINGW_ATTRIB_DEPRECATED_MSVC2005

2017-03-11 Thread Earnie
o be used for Windows builds and hasn't considered alternative compilers. You would need to provide proper patches to the upstream for support of your compiler and hope they are receptive to the idea. -- Earnie -- Announcing

Re: [Mingw-w64-public] [HELP] DLL relocation totally broken

2017-01-10 Thread Earnie
LL. If you create a bug report in GCC's bug database it will likely be closed because it is unsupported. -- Earnie -- Developer Access Program for Intel Xeon Phi Processors Access to Intel Xeon Phi processor-based devel

Re: [Mingw-w64-public] Will be fesetenv fixed?

2016-12-22 Thread Earnie
;> Thanks for looking into it. > > What's next? > Often these failures are nothing more than the result containing CRLF where the expectation is LF only. -- Earnie -- Developer Access Program for Intel Xeon

Re: [Mingw-w64-public] [Bug 1397787] New: 64-bit mingw pid_t should be 'int', not '__int64'

2016-11-23 Thread Earnie
ft.com/en-us/library/t2y34y40.aspx for reference. -- Earnie -- ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/mingw-w64-public

Re: [Mingw-w64-public] [PATCH v2] Add include/iscygtty.c

2016-11-11 Thread Earnie
On 11/10/2016 5:43 PM, Mihail Konev wrote: > Applications now could call iscygtty(STDIN_FILENO) > in order to detect whether they are running from > Cygwin/MSys terminal. > Should this be shared with Cygwin so that a similar function exists in its C API?

Re: [Mingw-w64-public] [PATCH] lib32 msvcrt add mkgmtime exports - XP support?

2016-11-03 Thread Earnie
at only changes for provable issues. Then the master branch doesn't need to worry about it. However, regardless of what we do here, the tools that use the API may move beyond XP. Those interested in XP need to ensure that the tool m

Re: [Mingw-w64-public] How to make __declspec(dllexport) more picky?

2016-04-04 Thread Earnie
On 4/4/2016 6:03 AM, Kai Tietz wrote: > 2016-04-02 16:48 GMT+02:00 Earnie <ear...@users.sourceforge.net>: >> The mismatch of the header >> from the function being used should at least issue a warning but I would >> prefer to see an error. The ld auto-import feature ju

Re: [Mingw-w64-public] How to make __declspec(dllexport) more picky?

2016-04-02 Thread Earnie
issue and when it was invented I wished for it to go away. The idea behind this was for ease of porting between the various systems without needing to change the attributes of symbols or in other words a lazy porting method. -- Earnie

Re: [Mingw-w64-public] A logo for MinGW-w64

2015-04-15 Thread Earnie
Caution, MINGW is a registered trademark. Its use must get permission from the owners of the trademark. -- Earnie From: David Gauer [mailto:ratfac...@gmail.com] Sent: Saturday, April 11, 2015 9:43 PM To: mingw-w64-public@lists.sourceforge.net mailto:mingw-w64-public

Re: [Mingw-w64-public] completely lost building/linking DLLs

2015-03-03 Thread Earnie
library to load and make the calls to the c++ methods. -- Earnie -- Dive into the World of Parallel Programming The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is your hub

Re: [Mingw-w64-public] binmode.o is doing nothing

2013-09-25 Thread Earnie Boyd
unnatural. -- Earnie -- https://sites.google.com/site/earnieboyd -- October Webinars: Code for Performance Free Intel webinars can help you accelerate application performance. Explore tips for MPI, OpenMP, advanced

Re: [Mingw-w64-public] libwinpthreads mutexes

2013-09-13 Thread Earnie Boyd
the source of that library. There are many sites such as SourceForge which gladly lends a hand in providing a means to distribute software. -- Earnie -- https://sites.google.com/site/earnieboyd -- How ServiceNow helps

Re: [Mingw-w64-public] config.guess

2013-07-31 Thread Earnie Boyd
includes -pc on this system. echo ${UNAME_MACHINE}-mingw32 exit ;; --8-- Also, the MSYS bit should not be there. Why not? It is in the master config.guess as updated by Chuck sometime last year. -- Earnie -- https://sites.google.com/site/earnieboyd

Re: [Mingw-w64-public] Change of SF.net file tree

2013-07-20 Thread Earnie Boyd
by project to know where on the file system it exists. -- Earnie -- https://sites.google.com/site/earnieboyd -- See everything from the browser to the database with AppDynamics Get end-to-end visibility with application

Re: [Mingw-w64-public] Not understanding SJLJ dependency tradeoffs

2013-07-15 Thread Earnie Boyd
-mingw32-dwarf2 --build=i686-w64-mingw32-sjlj You might also need to do a make all-host make install-host before it works well, then add your prefix/bin to the front of PATH and continue the make. It's a mess. I've been building 2.8.1 in several scenario's recently; not a fun event. -- Earnie

Re: [Mingw-w64-public] strange gcc 4.8 32bit windows target DLL behaviour

2013-07-03 Thread Earnie Boyd
or --export-all-symbols to always export all symbols. You'll also be interested in --warn-duplicate-exports. -- Earnie -- https://sites.google.com/site/earnieboyd -- This SF.net email is sponsored by Windows: Build for Windows

Re: [Mingw-w64-public] [PATCH] ___lc_codepage_func: use correct name and export from all versions of MSVCRT

2013-06-27 Thread Earnie Boyd
On Thu, Jun 27, 2013 at 10:21 AM, Rafaël Carré wrote: However ___lc_codepage_func seems to be also present in msvcrt.dll so why do we need emul? That depends on the version of MSVCRT.DLL on the users system. It is emulated to avoid conflicts at runtime. -- Earnie -- https://sites.google.com

Re: [Mingw-w64-public] [PATCH] ___lc_codepage_func: use correct name and export from all versions of MSVCRT

2013-06-27 Thread Earnie Boyd
On Thu, Jun 27, 2013 at 12:11 PM, Rafaël Carré wrote: Le 27/06/2013 17:17, Earnie Boyd a écrit : On Thu, Jun 27, 2013 at 10:21 AM, Rafaël Carré wrote: However ___lc_codepage_func seems to be also present in msvcrt.dll so why do we need emul? That depends on the version of MSVCRT.DLL

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

2013-06-23 Thread Earnie Boyd
Allura systems. And sometimes you'll get a partial download. Try differing mirrors to determine if it helps. -- Earnie -- https://sites.google.com/site/earnieboyd -- This SF.net email is sponsored by Windows: Build

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
configure scripts in the sub-directories. The issue will be prerequisite ordering. -- Earnie -- https://sites.google.com/site/earnieboyd -- This SF.net email is sponsored by Windows: Build for Windows Store. http

Re: [Mingw-w64-public] Fwd: SourceForge Project Upgrade - Code Repo Complete

2013-06-06 Thread Earnie Boyd
repository URL updates. The old repositories still exist and are still accessible for now (possible cleanup later). I would suggest someone go to the shell for the project and rename/remove the old directories containing the repositories. It has bit /projects/mingw more than once. -- Earnie

Re: [Mingw-w64-public] Windows GNU Make patches

2013-06-02 Thread Earnie Boyd
in the MinGW project's latest mingw32-make binary package. And for issues with the Windows versions of gnu make you should probably use the make-...@gnu.org list. That includes the configure script. -- Earnie -- https://sites.google.com/site/earnieboyd

Re: [Mingw-w64-public] [OT] top posting from yahoo [WAS: format check broken]

2013-05-04 Thread Earnie Boyd
On Sat, May 4, 2013 at 3:19 AM, NightStrike wrote: On Friday, May 3, 2013, Earnie Boyd wrote: On Thu, May 2, 2013 at 10:05 PM, Jim Michaels wrote: sorry, my yahoo mail can only top-post, so don't email me about that. still investigating this problem. Yahoo mail has nothing to do with TOP

Re: [Mingw-w64-public] [OT] top posting from yahoo [WAS: format check broken]

2013-05-03 Thread Earnie Boyd
just the same. Sure the client may put the cursor at the top of the page but the editor allows you to maneuver within the text. BTW, you shouldn't just do BOTTOM posting either, INLINE is what you want removing the unneeded quotes. -- Earnie -- https://sites.google.com/site/earnieboyd

Re: [Mingw-w64-public] ctype warnings

2013-04-11 Thread Earnie Boyd
. Perhaps someone should point that out to them? -- Earnie -- https://sites.google.com/site/earnieboyd -- Precog is a next-generation analytics platform capable of advanced analytics on semi-structured data. The platform

Re: [Mingw-w64-public] segfault

2013-04-03 Thread Earnie Boyd
On Wed, Apr 3, 2013 at 6:08 AM, Ahso Aa wrote: Are all dependencies compiled with the same toolchain? No I don't think so Then this is the most likely candidate of issue. ABI differences can and will cause you problems. -- Earnie -- https://sites.google.com/site/earnieboyd

Re: [Mingw-w64-public] [libcxx][PATCH] Fix for CMakelists.txt

2013-04-01 Thread Earnie Boyd
/ to the destination path. A filename cannot contain a / in its name. -- Earnie -- https://sites.google.com/site/earnieboyd -- Own the Future-Intelreg; Level Up Game Demo Contest 2013 Rise to greatness in Intel's independent game demo

Re: [Mingw-w64-public] [Mingw-users] Fwd: Re: Better mingw support

2013-03-29 Thread Earnie Boyd
-w64 needs some attention and care in config.guess and config.sub. -- Earnie -- https://sites.google.com/site/earnieboyd -- Own the Future-Intel(R) Level Up Game Demo Contest 2013 Rise to greatness in Intel's independent

Re: [Mingw-w64-public] [Mingw-users] Fwd: Re: Better mingw support

2013-03-29 Thread Earnie Boyd
On Fri, Mar 29, 2013 at 9:13 AM, Earnie Boyd wrote: Caution: MSYSTEM=MINGW64 will be used for identifying i86_64-pc-mingw64 in config.guess; I submitted a patch for it to the maintainers of config.guess and config.sub last year. Lacking the caffeine this morning s/i86_64/x86_64/ -- Earnie

Re: [Mingw-w64-public] MSYS absolute path conflict with configure tests

2013-03-29 Thread Earnie Boyd
to an absolute MSYS style path. I've never seen a problem with paths like this. If you execute configure in a separate build directory, using relative paths to the source, does it help? Some packages are designed to not configure properly in the source directory. -- Earnie -- https://sites.google.com/site

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

2013-03-23 Thread Earnie Boyd
being added? Is there a libtool bug? Is there a sub-package bug related to the Windows OS for your libgo? I would be tempted to manually modify libbacktrace Makefile to remove the -fPIC flag or perhaps its config.status file and reexecute it. -- Earnie -- https://sites.google.com/site

Re: [Mingw-w64-public] Using Google to search MinGW-w64-public archives

2013-03-15 Thread Earnie Boyd
On Fri, Mar 15, 2013 at 12:28 AM, Mook wrote: On 3/14/2013 8:48 AM, Earnie Boyd wrote: I've noticed some saying the SF archives search blows, here is an alternative using Google: mingw-w64-public+SearchItem+SearchItemN site:sourceforge.net/mailarchive/forum.php gmane also has a searchable

[Mingw-w64-public] Using Google to search MinGW-w64-public archives

2013-03-14 Thread Earnie Boyd
I've noticed some saying the SF archives search blows, here is an alternative using Google: mingw-w64-public+SearchItem+SearchItemN site:sourceforge.net/mailarchive/forum.php -- Earnie -- https://sites.google.com/site/earnieboyd

Re: [Mingw-w64-public] Runtime error when linking MingW-w64 with MSVCR90

2013-03-04 Thread Earnie Boyd
++. -- Earnie -- https://sites.google.com/site/earnieboyd -- Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://p.sf.net/sfu/appdyn_d2d_feb

Re: [Mingw-w64-public] Runtime error when linking MingW-w64 with MSVCR90

2013-03-04 Thread Earnie Boyd
applications use DLLs which use the system MSVCRT.dll rather than msvcr90.dll. So does my 'working' version compiled with VC++. The only difference is that the main program itself depends on a single runtime only. Yes, http://msdn.microsoft.com/en-us/library/ms235460.aspx. -- Earnie -- https

Re: [Mingw-w64-public] Runtime error when linking MingW-w64 with MSVCR90

2013-03-04 Thread Earnie Boyd
On Mon, Mar 4, 2013 at 10:42 AM, Sebastian Wolff wrote: Although little off-topic, one questions remains to me: Is it allowed to distribute proprietary software which links against libgcc statically? http://www.gnu.org/licenses/gcc-exception-faq.html -- Earnie -- https://sites.google.com/site

Re: [Mingw-w64-public] Runtime error when linking MingW-w64 with MSVCR90

2013-03-02 Thread Earnie Boyd
was chosen as the library name, it sounds a bit over stated for the purpose it provides. -- Earnie -- https://sites.google.com/site/earnieboyd -- Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics

Re: [Mingw-w64-public] Cross-compiling BASH

2013-02-14 Thread Earnie Boyd
not too long. -- Earnie -- https://sites.google.com/site/earnieboyd -- 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

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

2013-02-06 Thread Earnie Boyd
and another for writing, or are the reading and writing coupled somehow under the hood? Does this help any? http://msdn.microsoft.com/en-us/library/windows/desktop/ms684841(v=vs.85).aspx -- Earnie -- https://sites.google.com/site/earnieboyd

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

2013-02-06 Thread Earnie Boyd
On Wed, Feb 6, 2013 at 8:32 AM, K. Frank wrote: I'm going to go with the working assumption that I can use two threads with a winsock socket, but I'll keep my eyes open, just in case. You might want to be sure the streams are set to binary mode and be careful of buffering. -- Earnie -- https

Re: [Mingw-w64-public] [Mingwbuilds-users] Qt 5.0.1 binary packages with MinGW-builds toolchain

2013-01-31 Thread Earnie Boyd
? No, I don't know .. You can store the debug info in a differing file while stripping it from the DLL. strip foo.dll -f foo.dll.debug -- Earnie -- https://sites.google.com/site/earnieboyd -- Everyone hates slow

Re: [Mingw-w64-public] Suggestion for FAQ Re _vswprintf and msvcrt.dll on XP SP1

2013-01-23 Thread Earnie Boyd
of that software would need to ensure his system meets that minimum standard. -- Earnie -- https://sites.google.com/site/earnieboyd -- Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, MVC, Windows 8 Apps

Re: [Mingw-w64-public] MSYS alternative as a process-managing shell

2013-01-16 Thread Earnie Boyd
. -- Earnie -- https://sites.google.com/site/earnieboyd -- 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

Re: [Mingw-w64-public] MSYS alternative as a process-managing shell

2013-01-15 Thread Earnie Boyd
to get help. -- Earnie -- https://sites.google.com/site/earnieboyd -- Master SQL Server Development, Administration, T-SQL, SSAS, SSIS, SSRS and more. Get SQL Server skills now (including 2012) with LearnDevNow - 200+ hours

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

2013-01-06 Thread Earnie Boyd
) This is the correct MACRO to use for compiler specific things like this. So to get this to build correctly with GCC you'll need to determine which items in the code identified by _MSC_VER should really be _WIN32 and change them. -- Earnie -- https://sites.google.com/site/earnieboyd

Re: [Mingw-w64-public] ironCrate

2012-12-01 Thread Earnie Boyd
++, JAVA, FORTRAN, etc, they all products for developing an application. Each has its own merits for existing. You either like it or loathe it, but each is a different color of the same bike shed. -- Earnie -- https://sites.google.com/site/earnieboyd

Re: [Mingw-w64-public] Placement of additional libraries

2012-11-22 Thread Earnie Boyd
On Thu, Nov 22, 2012 at 4:07 AM, JonY wrote: See gcc -print-search-dirs, usually in $prefix/[x86_64-w64-]mingw32/include and it's sibling lib or lib64 dirs. Or it might be lib or lib32 directories. The TDM distribution puts the 64bit in lib and 32bit in lib32. -- Earnie -- https

Re: [Mingw-w64-public] x86_64-w64-mingw32-g++.exe links with 32 bit libs

2012-11-20 Thread Earnie Boyd
even using the 64bit binaries? -- Earnie -- https://sites.google.com/site/earnieboyd -- Monitor your physical, virtual and cloud infrastructure from a single web console. Get in-depth insight into apps, servers, databases

Re: [Mingw-w64-public] x86_64-w64-mingw32-g++.exe links with 32 bit libs

2012-11-19 Thread Earnie Boyd
? Assuming you have a cross compiler and have specified a target of x86_64-w64-mingw32 it should use the correct include and libraries which would be located in a directory of the same name under your installed prefix. -- Earnie -- https://sites.google.com/site/earnieboyd

Re: [Mingw-w64-public] MinWG64 on Windows, for Windows?

2012-11-19 Thread Earnie Boyd
can be mitigated by converting to text mode. -- Earnie -- https://sites.google.com/site/earnieboyd -- Monitor your physical, virtual and cloud infrastructure from a single web console. Get in-depth insight into apps

Re: [Mingw-w64-public] MinWG64 on Windows, for Windows?

2012-11-19 Thread Earnie Boyd
On Mon, Nov 19, 2012 at 8:37 AM, Ray Donnelly wrote: On Mon, Nov 19, 2012 at 1:32 PM, Earnie Boyd You may need to build it yourself using the GCC sources. I need to create a document for doing this so I can just point to it. Even better, you could encode your knowledge into patches

Re: [Mingw-w64-public] Directory for library installation: lib/ or bin/ ?

2012-11-13 Thread Earnie Boyd
versions of the OS. http://msdn.microsoft.com/en-us/library/windows/desktop/ms682586(v=vs.85).aspx http://msdn.microsoft.com/en-us/library/windows/desktop/aa376414(v=vs.85).aspx -- Earnie -- https://sites.google.com/site/earnieboyd

Re: [Mingw-w64-public] Directory for library installation: lib/ or bin/ ?

2012-11-13 Thread Earnie Boyd
On Tue, Nov 13, 2012 at 8:23 AM, Ruben Van Boxem vanboxem.ru...@gmail.com wrote: 2012/11/13 Earnie Boyd ear...@users.sourceforge.net On Tue, Nov 13, 2012 at 8:05 AM, Kai Tietz wrote: As I said before ... you need to add the target-lib/ folder to you path. That is unfriendly to the end

Re: [Mingw-w64-public] Directory for library installation: lib/ or bin/ ?

2012-11-13 Thread Earnie Boyd
On Tue, Nov 13, 2012 at 8:01 AM, Ruben Van Boxem vanboxem.ru...@gmail.com wrote: 2012/11/13 Earnie Boyd ear...@users.sourceforge.net That doesn't address the side-by-side issue where we need a 32bit executable matching the 64bit executable. What do you propose for 32bit executable path

Re: [Mingw-w64-public] Directory for library installation: lib/ or bin/ ?

2012-11-13 Thread Earnie Boyd
that. -- Earnie -- https://sites.google.com/site/earnieboyd -- Monitor your physical, virtual and cloud infrastructure from a single web console. Get in-depth insight into apps, servers, databases, vmware, SAP, cloud infrastructure, etc

Re: [Mingw-w64-public] Directory for library installation: lib/ or bin/ ?

2012-11-12 Thread Earnie Boyd
it to $PATH (in addition to $PREFIX/bin), but I wonder if there is a good reason to put libs under bin. Common practice is to put the DLL in the $PREFIX/bin directory and to put the import libraries in $PREFIX/lib. Since it is common practice doing otherwise might upset your users. -- Earnie

Re: [Mingw-w64-public] Directory for library installation: lib/ or bin/ ?

2012-11-12 Thread Earnie Boyd
. -- Earnie -- https://sites.google.com/site/earnieboyd -- Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://p.sf.net/sfu/appdyn_d2d_nov

Re: [Mingw-w64-public] Standard library installation paths?

2012-11-09 Thread Earnie Boyd
by _WIN64 if the 64bit compiler is being used. I filtered my statements with mingw-w64 distributed, therefore there is no clash. If the OP intends to use various compiler distributions then yes, segregation is needed; but I didn't get that from the original post. -- Earnie -- https

Re: [Mingw-w64-public] Standard library installation paths?

2012-11-09 Thread Earnie Boyd
On Fri, Nov 9, 2012 at 9:01 AM, Ruben Van Boxem vanboxem.ru...@gmail.com wrote: 2012/11/9 Earnie Boyd ear...@users.sourceforge.net On Thu, Nov 8, 2012 at 5:05 PM, JonY wrote: There isn't an include directory specifically for win32 and another for win64. Installing to the same area

Re: [Mingw-w64-public] Standard library installation paths?

2012-11-08 Thread Earnie Boyd
/faq.using.html#faq.using.bloda That was my first thought. Especially the antivirus that scans files as soon as they're created. -- Earnie -- https://sites.google.com/site/earnieboyd -- Everyone hates slow websites. So do we

Re: [Mingw-w64-public] Error building python extension (DLL load failed: invalid access to memory location)

2012-11-07 Thread Earnie Boyd
help with that so that you're using only the functions you require and not encumbering the linker to decide. -- Earnie -- https://sites.google.com/site/earnieboyd -- LogMeIn Central: Instant, anywhere, Remote PC access

Re: [Mingw-w64-public] MinWG64 on Windows, for Windows?

2012-11-06 Thread Earnie Boyd
a few hours... ;) Or if you want a bit faster cross compiler system use MSYS and mingw-w64 distributed binaries. There is no need to encumber the extra time the Cygwin runtime would add to the process. -- Earnie -- https://sites.google.com/site/earnieboyd

Re: [Mingw-w64-public] Error building python extension (DLL load failed: invalid access to memory location)

2012-11-06 Thread Earnie Boyd
documents: http://msdn.microsoft.com/en-us/library/abx4dbyh.aspx http://msdn.microsoft.com/en-us/library/ms235460.aspx -- Earnie -- https://sites.google.com/site/earnieboyd -- LogMeIn Central: Instant, anywhere, Remote PC

Re: [Mingw-w64-public] bug in gcc? dereferencing pointers to iterators

2012-11-06 Thread Earnie Boyd
groups (and don't follow this list) who might learn something from the discussions. I was wondering how long it was going to take before someone was going to suggest this. Longer than I thought it would. :D -- Earnie -- https://sites.google.com/site/earnieboyd

Re: [Mingw-w64-public] strerror_s problem

2012-11-02 Thread Earnie Boyd
On Fri, Nov 2, 2012 at 4:55 AM, Ozkan Sezer wrote: On Thu, Nov 1, 2012 at 4:54 PM, Earnie Boyd wrote: Browsing the SVN data, try including strings.h instead of string.h. See http://mingw-w64.svn.sourceforge.net/viewvc/mingw-w64/trunk/mingw-w64-headers/crt/string.h?revision=1520view

Re: [Mingw-w64-public] strerror_s problem

2012-11-02 Thread Earnie Boyd
On Fri, Nov 2, 2012 at 8:51 AM, Ozkan Sezer wrote: On 11/2/12, Earnie Boyd wrote: On Fri, Nov 2, 2012 at 4:55 AM, Ozkan Sezer wrote: On Thu, Nov 1, 2012 at 4:54 PM, Earnie Boyd wrote: Browsing the SVN data, try including strings.h instead of string.h. See http://mingw-w64.svn.sourceforge.net

Re: [Mingw-w64-public] incorrect syntax while building QT 4.8.3

2012-11-02 Thread Earnie Boyd
...@lists.sourceforge.net list. -- Earnie -- https://sites.google.com/site/earnieboyd -- LogMeIn Central: Instant, anywhere, Remote PC access and management. Stay in control, update software, and manage PCs from one command

Re: [Mingw-w64-public] Error building python extension (DLL load failed: invalid access to memory location)

2012-11-02 Thread Earnie Boyd
libraries and modules with the same compiler. You are likely to have issues between mingw.org's gcc built libraries and other's releases of gcc. -- Earnie -- https://sites.google.com/site/earnieboyd -- LogMeIn Central

Re: [Mingw-w64-public] strerror_s problem

2012-11-01 Thread Earnie Boyd
, but when compiled as C, works fine. This looks like a pure MinGW-w64 bug, what can I do to fix it? Is it properly wrapped in the extern C { } when __cplusplus is defined? Is __cplusplus defined correctly? -- Earnie -- https://sites.google.com/site/earnieboyd

Re: [Mingw-w64-public] strerror_s problem

2012-11-01 Thread Earnie Boyd
is different. Only linkage is affected, and I get a compile error. Because the C++ mangled name doesn't exist in the library. -- Earnie -- https://sites.google.com/site/earnieboyd -- Everyone hates slow websites. So do we

Re: [Mingw-w64-public] strerror_s problem

2012-11-01 Thread Earnie Boyd
-- Earnie -- https://sites.google.com/site/earnieboyd -- Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://p.sf.net/sfu/appdyn_sfd2d_oct

Re: [Mingw-w64-public] RFC: How shall we plan releases of new major

2012-10-26 Thread Earnie Boyd
On Fri, Oct 26, 2012 at 8:05 AM, Ruben Van Boxem vanboxem.ru...@gmail.com wrote: 2012/10/26 Earnie Boyd ear...@users.sourceforge.net On Thu, Oct 25, 2012 at 9:07 PM, JonY wrote: Microsoft DLLs when possible, eg msvcrt.dll, though it is not possible unless you stick strictly to C. Like Kai

Re: [Mingw-w64-public] RFC: How shall we plan releases of new major

2012-10-26 Thread Earnie Boyd
the sited source removes their files or goes away for any length of time. The question is also stated in such a manner that *you* are the one controlling both sites; i.e. the answer to the question doesn't eliminate your responsibility to provide the source. -- Earnie -- https://sites.google.com/site

Re: [Mingw-w64-public] RFC: How shall we plan releases of new major

2012-10-26 Thread Earnie Boyd
, and other methods for combining code in their conditions So I doubt your forced static runtime linking affects any of this. The static linking reduces the need to distribute the shared library. It is the shared library whose source needs distributed when you distribute the shared library. -- Earnie

Re: [Mingw-w64-public] RFC: How shall we plan releases of new major

2012-10-26 Thread Earnie Boyd
the source that created it. -- Earnie -- https://sites.google.com/site/earnieboyd -- The Windows 8 Center In partnership with Sourceforge Your idea - your app - 30 days. Get started! http://windows8center.sourceforge.net

Re: [Mingw-w64-public] RFC: How shall we plan releases of new major

2012-10-26 Thread Earnie Boyd
already has the source. -- Earnie -- https://sites.google.com/site/earnieboyd -- The Windows 8 Center In partnership with Sourceforge Your idea - your app - 30 days. Get started! http://windows8center.sourceforge.net/ what

Re: [Mingw-w64-public] conflicting types?

2012-10-20 Thread Earnie Boyd
, with the same include (windows.h) in 64 bit it also loads intrin.h, but not in 32 bit. odd... It is most likely because _WIN64 takes on different characteristics. I.E. The same path isn't followed in the header code when _WIN64 is defined. -- Earnie -- https://sites.google.com/site/earnieboyd

Re: [Mingw-w64-public] Detect mingw

2012-10-16 Thread Earnie Boyd
a MinGW.org provided 64-bit compiler would define it. The (not likely) is not likely true. ;p -- Earnie -- https://sites.google.com/site/earnieboyd -- Don't let slow site performance ruin your business. Deploy New Relic APM

Re: [Mingw-w64-public] [Mingw-users] The difference between pe and pei ?

2012-10-12 Thread Earnie Boyd
. -- Earnie -- https://sites.google.com/site/earnieboyd -- Don't let slow site performance ruin your business. Deploy New Relic APM Deploy New Relic app performance management and know exactly what is happening inside your Ruby

Re: [Mingw-w64-public] Problem with mingw32-make and long commands (x86_64-w64-mingw32-gcc-4.7.2-release-win64_rubenvb)

2012-09-28 Thread Earnie Boyd
for mingw-builds. -- Earnie -- https://sites.google.com/site/earnieboyd -- Got visibility? Most devs has no idea what their production app looks like. Find out how fast your code is with AppDynamics Lite. http

  1   2   3   >