From: Gregor P. <pe...@in...> - 2002-01-09 14:03:00
Hi there,
can anybody tell me if the (Mingw / Cygwin) Compilers used by Dev-C++
are affected of this Compiler-Bug?
http://www.cygwin.com/ml/cygwin/1999-12/msg00382.html
From the menue of Dev-C++ IDE 'Help/About Bloodshed Dev-C++' reports
that I would use
Dev-C++ Version 4.01 an the
Mingw compiler 2.95.2-1 MSVCRT.
Do I have to update the compiler?
Cheers
Gregor (pe...@in...)
After installing the latest version of Dev-C++ (Beta 5) -- no, I didn't install on top of the old version; I completely wiped Dev-C++ 4 after unistalling it -- I'm getting this error:
[Resource Error] no resources
C:\Dev-C++\Examples\WinAnim\Makefile.win
[Build Error] [Anim_private.res] Error 1
Yes, the error comes from a Dev-C++ example project file and occurs in mine own (updated) project files as well. Of the things I can remember that I did after I installed it, "Profile Analysis" comes to mind. Anyway, any help is appreciated; thanks.
--Ax
__________________________________________________________________
The NEW Netscape 7.0 browser is now available. Upgrade now! http://channels.netscape.com/ns/browsers/download.jsp
Get your own FREE, personal Netscape Mail account today at http://webmail.netscape.com/
From: Scott S. S. <age...@co...> - 2003-04-21 21:34:50
Okay. I have dev c++ 4.9.8.0 When I use cout<<, I get errors. When I
use printf, everything is ok. What is wrong? Is it optimized for C
only? How can I get it back to C++?
Thanks in Advance,
Scott
From: David M. <dem...@uw...> - 2003-04-22 00:33:59
Without specific errors there's not much to go on, but do you have using
namespace std; in your code? If you aren't specifically using
std:cout<<std:endl; then that would cause problems.
At 05:20 PM 21/04/2003 -0400, Scott Simontis SIMONTIS wrote:
>Okay. I have dev c++ 4.9.8.0 When I use cout<<, I get errors. When I
>use printf, everything is ok. What is wrong? Is it optimized for C
>only? How can I get it back to C++?
>Thanks in Advance,
>Scott
>
>
>
>-------------------------------------------------------
>This sf.net email is sponsored by:ThinkGeek
>Welcome to geek heaven.
>http://thinkgeek.com/sf
>_______________________________________________
>Dev-cpp-users mailing list
>Dev...@li...
>TO UNSUBSCRIBE: http://www.noicys.cjb.net/devcpp/ub.htm
>https://lists.sourceforge.net/lists/listinfo/dev-cpp-users
>
#include <iostream> (for C++ I/O)
#include <stdio.h> (for C I/O)
Errata in the answer I cite below:
std::cout << std::endl TWO COLONS, not one.
David Matthews wrote:
>Without specific errors there's not much to go on, but do you have using
>namespace std; in your code? If you aren't specifically using
>std:cout<<std:endl; then that would cause problems.
>
>At 05:20 PM 21/04/2003 -0400, Scott Simontis SIMONTIS wrote:
>
>
>>Okay. I have dev c++ 4.9.8.0 When I use cout<<, I get errors. When I
>>use printf, everything is ok. What is wrong? Is it optimized for C
>>only? How can I get it back to C++?
>>Thanks in Advance,
>>Scott
>>
>>
>>
>>-------------------------------------------------------
>>This sf.net email is sponsored by:ThinkGeek
>>Welcome to geek heaven.
>>http://thinkgeek.com/sf
>>_______________________________________________
>>Dev-cpp-users mailing list
>>Dev...@li...
>>TO UNSUBSCRIBE: http://www.noicys.cjb.net/devcpp/ub.htm
>>https://lists.sourceforge.net/lists/listinfo/dev-cpp-users
>>
>>
>>
>
>
>-------------------------------------------------------
>This sf.net email is sponsored by:ThinkGeek
>Welcome to geek heaven.
>http://thinkgeek.com/sf
>_______________________________________________
>Dev-cpp-users mailing list
>Dev...@li...
>TO UNSUBSCRIBE: http://www.noicys.cjb.net/devcpp/ub.htm
>https://lists.sourceforge.net/lists/listinfo/dev-cpp-users
>
>
>