Search the web
Sign In
New User? Sign Up
mingw32 · Mingw - GNU Compiler for Win9x/NT/2K
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3005 - 3034 of 3345   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3005
Hi gang, I am interested in using the msvcrt run time library for programs created with a Linux hosted version of mingw32. I have been using the ...
Matthew H. Gerlach
mgerlach@...
Send Email
Aug 1, 2000
9:32 pm
3006
... Go back to the SDL web page and download the shell script: Instructions on building your own Win32 cross-compiler (Mo DeJong has made an automatic shell...
Mo DeJong
mdejong@...
Send Email
Aug 1, 2000
9:36 pm
3007
Hi Mo, Thanks for the quick response. I got your script, and it ran just great. The only problem is that libstc++ is not part of the package. I suppose I ...
Matthew H. Gerlach
mgerlach@...
Send Email
Aug 1, 2000
11:06 pm
3008
... Strange, that works just fine for me. Did you not end up with a i386-mingw32msvc/lib/libstdc++.a.2.10.0 file in the install location? Mo DeJong Red Hat Inc...
Mo DeJong
mdejong@...
Send Email
Aug 1, 2000
11:11 pm
3009
I did not find anything in my intall location. I do see the source under the gcc part of the source tree. Matthew...
Matthew H. Gerlach
mgerlach@...
Send Email
Aug 1, 2000
11:27 pm
3010
... Check the make.out and configure.out files in the build dir and see to see if something went wrong. Mo DeJong Red Hat Inc...
Mo DeJong
mdejong@...
Send Email
Aug 1, 2000
11:33 pm
3011
in the gcc-i386-mingw32msvc subdirectory of my build directory there are two log files, make1.log and make2.log. Both have similar problems. I've attached...
Matthew H. Gerlach
mgerlach@...
Send Email
Aug 1, 2000
11:45 pm
3012
hello was trying to set background color and text to treeview controls and had discovered few messages and macros (ie TVM_SETTEXTCOLOR) etc. that were not in...
leon@...
Send Email
Aug 2, 2000
4:22 am
3013
... __int64 t1970 = 0x019DB1DED53E8000LL; ^^ that fixes it I didn't know MingWin has __int64, have been using long long myself; Regards, Frank ... Frank...
Frank Vorstenbosch
fav@...
Send Email
Aug 2, 2000
4:55 pm
3014
--On Wednesday, August 02, 2000 5:55 PM +0100 Frank Vorstenbosch ... I don't think it does... I think one of the include files has a typedef that fixes this. ...
Christopher Smith
x@...
Send Email
Aug 2, 2000
5:04 pm
3015
... int64 constants must have the suffix LL in gcc, like for example 0x019DB1DED53E8000LL In VisualC++ they must have the suffix i64, like...
Norbert Irmer
norbert.irmer@...
Send Email
Aug 2, 2000
9:00 pm
3016
... Thanks! BTW, why only C++ requires LL sufix? (It works perfectly without LL in plain C) Regards, Lado Brisar. http://lbrisar.htmlplanet.com...
Lado Brisar
lbrisar@...
Send Email
Aug 3, 2000
6:54 pm
3017
--On Thursday, August 03, 2000 8:54 PM +0200 Lado Brisar ... I suspect you're encountering C's weaker type safety vs. C++ stronger type safety. --Chris...
Christopher Smith
x@...
Send Email
Aug 3, 2000
6:57 pm
3018
Hi folks, I don't usually do this sort of thing, but thought I'd share a link I found today: ...
Paul Garceau
pgarceau@...
Send Email
Aug 3, 2000
8:25 pm
3019
I've just release a new version of DrMingw that can dump arguments of function calls. It's still kind of beta, i.e., not all types of arguments are supported,...
Jose Fonseca
em96115@...
Send Email
Aug 3, 2000
9:03 pm
3020
Hello just would like to know if libcomctl32.a (from crtdll distrib of MingW32 ) 1st dya of 7 month 99 has been updated lately. I am thinking in terms of...
leon@...
Send Email
Aug 4, 2000
12:57 am
3021
... are two log ... aha! I figured this one out. My first build (on another machine) worked fine. but my subsequent build on my machine at home failed with...
rhk@...
Send Email
Aug 4, 2000
2:02 am
3022
... Could you file a gcc bug on this? http://gcc.gnu.org/gnats.html Be sure to mention that you are trying to build a cross environment and why the build...
Mo DeJong
mdejong@...
Send Email
Aug 4, 2000
2:18 am
3023
Hi. I have a query about the following compile error. ... I know that the compiler is finding <io.h> correctly so following a suggestion I got on gnu.gcc.help...
Walsh, Joseph
Joseph.Walsh@...
Send Email
Aug 4, 2000
7:31 am
3024
... looks just like that. ... It looks to me that You are using a cross-compiler for mingw32 ? Maybe you are not aware that g++ usually invoces the native g++,...
franco.bez@...
Send Email
Aug 4, 2000
7:55 am
3025
... When you get messages like this let gcc help you. This is from Mumit's mno-cygwin-howto but it is good advice for alot of problem: "Use the '-v'...
Danny Smith
danny_r_smith@...
Send Email
Aug 4, 2000
8:03 am
3026
In the win32 world, the correct call isn't "_findfirst" as it was back in the DOS days, it's now just "findfirst". Oh, and the parameters have changed as well;...
Kenneth Cornetet
kcornet@...
Send Email
Aug 4, 2000
1:45 pm
3027
... Then for mingw, which doesn't create 16-bit binaries, _findfirst is OK and there's no need for a macro, right? (Would it be better to put the macro...
Greg Chicares
chicares@...
Send Email
Aug 4, 2000
3:36 pm
3028
My mistake - brain burp. Of all the things I've lost, I miss my mind the most... Back in the DOS days, it was _dos_findfirst. In windows, it's _findfirst. If ...
Kenneth Cornetet
kcornet@...
Send Email
Aug 4, 2000
5:04 pm
3029
... You can get slightly more recent (20000-03-27) runtime libs and headers from here: ftp://ftp.xraylith.wisc.edu/pub/khan/gnu-win32/mingw32/runtime/ ... ...
Danny Smith
danny_r_smith@...
Send Email
Aug 5, 2000
2:40 am
3030
Hi I have a similar problem: int NetClass::SetSendTimeOut(int millisec) { if(!setsockopt(sd,IPPROTO_TCP,SO_SNDTIMEO, (char *)&millisec,sizeof(millisec))) ...
Martin Juul
munin@...
Send Email
Aug 6, 2000
12:13 pm
3031
Oh yeah, and if someone could tell me wich are the latest (but the most complete) Dx headers and libs for mingw32 and where they are... thanks in advance...
Javier González
xaviergonz@...
Send Email
Aug 7, 2000
12:39 am
3032
Hi everybody. Does anyone know where i can found the complete (and not just a stub) winsock2 headers and libs for mingw32? Thanks!...
Javier González
xaviergonz@...
Send Email
Aug 7, 2000
12:42 am
3033
... From: "Javier González" <xaviergonz@...> To: <mingw32@egroups.com> Sent: Monday, 7 August 2000 12:39 Subject: [mingw] Dx latest libs and headers ...
Danny Smith
danny_r_smith@...
Send Email
Aug 7, 2000
1:35 am
3034
Can anybody tell me where inportb, inportw, inportl and all associated functions are declared and which library should be link with ? PS : please, reply to my...
DAANEN Vincent
vdaanen@...
Send Email
Aug 7, 2000
6:50 am
Messages 3005 - 3034 of 3345   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help