-
I believe you are looking for FindFirstFile (not FileFindFirst), FindNextFile and FindClose. They're there.
2007-12-07 04:19:45 UTC in MinGW - Minimalist GNU for Windows
-
The "really screwball way" that the location of ld.exe is
expressed is a function of GCC, not MinGW. This command
(for any version of GCC on any platform) shows you where
GCC searches for executables:
gcc -print-search-dirs | grep programs
Also, I see that your PATH variable starts with ".". Are
you working in a current directory under H:\? That could
be where it's coming from...
2007-11-01 21:34:10 UTC in MinGW - Minimalist GNU for Windows
-
The names, though not the values, are publicly documented here:
Also, both Wine and ReactOS have these defines in their mmsystem.h header.
2007-10-16 15:58:45 UTC in MinGW - Minimalist GNU for Windows
-
Accessing memory after it has been freed is a violation of the rules.
It makes no sense to complain that you get inconsistent results when you violate a rule in different environments because implementors have no obligation to give consistent results for such violations.
2007-10-16 13:51:43 UTC in MinGW - Minimalist GNU for Windows
-
To test for corruption, I downloaded both files onto my GNU/Linux machine and verified the gzipping is not corrupted. That is, these commands reported the files are "OK":
gunzip -tv libgcc_dw2_1.dll.gz
gunzip -tv libgcc_sjlj_1.dll.gz
They also unzipped ok and the 'file' command recognized the dll files. I did not attempt to use them in any execution.
2007-09-07 14:40:03 UTC in MinGW - Minimalist GNU for Windows
-
marc_andrysco,
It looks like you are building MinGW executables with the Cygwin GCC compiler. You can do that, but are you using this switch?
-mno-cygwin
It tells Cygwin GCC to use the MinGW files.
2007-07-06 02:31:26 UTC in MinGW - Minimalist GNU for Windows
-
Oops. I forgot the dashes to indicate stdin in my last:
echo '#include ' | gcc -H -E -xc - | less
echo '#include ' | g++ -H -E -xc++ - | less.
2007-04-27 05:00:38 UTC in MinGW - Minimalist GNU for Windows
-
Either
replace "" with ""
or
rename Hello.c to Hello.cpp and compile with the "g++" command.
Also, to see where the compiler is looking for header files, try these:
echo '#include ' | gcc -H -E -xc | less
echo '#include ' | g++ -H -E -xc++ | less.
2007-04-27 04:50:48 UTC in MinGW - Minimalist GNU for Windows
-
The CVS source code browser does not show any files:
http://getgnuwin32.cvs.sourceforge.net/getgnuwin32
And I can't even try to use CVS directly because I don't know what module name to checkout.
2007-04-14 13:59:29 UTC in Automated gnuwin32 download tool
-
I appreciate the problems that the chaos causes for both developers and users. Any contribution that wxWPM can make to bring order out of the chaos is very welcome.
The LSB stipulates, "Applications shall either be packaged in the RPM packaging format as defined in this specification, or supply an installer which is LSB conforming (for example, calls LSB commands and utilities)."...
2007-02-03 15:13:29 UTC in wxWidgets Package Manager