From: David J. P. <Da...@Pi...> - 2009-04-08 21:30:49
|
I have a WinXP system with MSYS, MinGW and FLTK installed. I just learned about the DevC++ package and would like to install it. Can I install it 'over' what I have or would it be best to uninstall and start over? The current versions on my system are: MinGW 4.1.0 MSYS 1.0.10 FLTK 2.0 Thanks, Dave |
From: Gösta L. <go...@fo...> - 2009-04-09 09:20:02
|
Yes, there is a version of the Dev-C++ IDE that does not contain the compiler. Personally I prefer this version since the Dev-C++ version of MinGW is tailored to the IDE and therefore requires more fiddling with settings and build configurations if you want to add libraries that are not included as Dev-C++ packages. By using the stock MinGW you'll get a system that is easier to extend. The drawback is that it takes a bit more work to hook the IDE to the compiler. No big deal, though. What is best to do depends on what you want and how much time you want to spend to get it. By the way, I've given up using Dev-C++ in favor of the Crimson Editor which is free and does just as good a job as an IDE because of the possibility to add user tools which also means that you're not limited to C and C++. The only drawback is that with Crimson Editor you have to write the makefile yourself. Dev-C++ does this for you. If you're used to your system I believe that it would take you a bit more work to get used to Dev-C++ rather than the Crimson Editor. But it's all a matter of taste. Try them both out. Best wishes, Gösta Ljungdahl -- David J. Pfaltzgraff wrote: > I have a WinXP system with MSYS, MinGW and FLTK installed. I just learned > about the DevC++ package and would like to install it. > > Can I install it 'over' what I have or would it be best to uninstall and > start over? > > The current versions on my system are: > MinGW 4.1.0 > MSYS 1.0.10 > FLTK 2.0 > > Thanks, > Dave > > > > > > ------------------------------------------------------------------------------ > This SF.net email is sponsored by: > High Quality Requirements in a Collaborative Environment. > Download a free trial of Rational Requirements Composer Now! > http://p.sf.net/sfu/www-ibm-com > _______________________________________________ > Dev-cpp-users mailing list > Dev...@li... > TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm > https://lists.sourceforge.net/lists/listinfo/dev-cpp-users |
From: Per W. <pw...@ia...> - 2009-04-09 09:51:25
|
Using a separate MinGW installation means that you can use a many years newer MinGW - Dev-C++ ships with an ancient version. But for new users, I recommend a look at the Code::Blocks IDE. It supports a large number of compilers and has better integration with the tools than Dev-C++. /pwm On Thu, 9 Apr 2009, Gösta Ljungdahl wrote: > Yes, there is a version of the Dev-C++ IDE that does not contain the > compiler. Personally I prefer this version since the Dev-C++ version of > MinGW is tailored to the IDE and therefore requires more fiddling with > settings and build configurations if you want to add libraries that are > not included as Dev-C++ packages. By using the stock MinGW you'll get a > system that is easier to extend. The drawback is that it takes a bit > more work to hook the IDE to the compiler. No big deal, though. What is > best to do depends on what you want and how much time you want to spend > to get it. By the way, I've given up using Dev-C++ in favor of the > Crimson Editor which is free and does just as good a job as an IDE > because of the possibility to add user tools which also means that > you're not limited to C and C++. The only drawback is that with Crimson > Editor you have to write the makefile yourself. Dev-C++ does this for > you. If you're used to your system I believe that it would take you a > bit more work to get used to Dev-C++ rather than the Crimson Editor. But > it's all a matter of taste. Try them both out. > > Best wishes, > > Gösta Ljungdahl > -- > David J. Pfaltzgraff wrote: > > I have a WinXP system with MSYS, MinGW and FLTK installed. I just learned > > about the DevC++ package and would like to install it. > > > > Can I install it 'over' what I have or would it be best to uninstall and > > start over? > > > > The current versions on my system are: > > MinGW 4.1.0 > > MSYS 1.0.10 > > FLTK 2.0 > > > > Thanks, > > Dave > > > > > > > > > > > > ------------------------------------------------------------------------------ > > This SF.net email is sponsored by: > > High Quality Requirements in a Collaborative Environment. > > Download a free trial of Rational Requirements Composer Now! > > http://p.sf.net/sfu/www-ibm-com > > _______________________________________________ > > Dev-cpp-users mailing list > > Dev...@li... > > TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm > > https://lists.sourceforge.net/lists/listinfo/dev-cpp-users > > > ------------------------------------------------------------------------------ > This SF.net email is sponsored by: > High Quality Requirements in a Collaborative Environment. > Download a free trial of Rational Requirements Composer Now! > http://p.sf.net/sfu/www-ibm-com > _______________________________________________ > Dev-cpp-users mailing list > Dev...@li... > TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm > https://lists.sourceforge.net/lists/listinfo/dev-cpp-users > |
From: John H. <jhi...@ya...> - 2009-04-26 21:43:57
|
I read in a book: "...You could use the STL stack class, which has an iterator...". When I coded the following, I got a compiling error: undefined symbol "iterator" #include <stack> stack<int> numbers; stack<int>::iterator cursor; I was trying to use iterator to display the content of a stack. Can anyone help me? Jess |
From: Alessandro B. <ale...@is...> - 2009-04-27 19:42:37
|
Maybe you forget using namespace std; Alessandro John Higgins ha scritto: > > I read in a book: "...You could use the STL stack class, which has an > iterator...". > > > > When I coded the following, I got a compiling error: undefined symbol > "iterator" > > #include <stack> > > stack<int> numbers; > > stack<int>::iterator cursor; > > I was trying to use iterator to display the content of a stack. > > > > Can anyone help me? > > > > Jess > > > > > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------------ > Crystal Reports - New Free Runtime and 30 Day Trial > Check out the new simplified licensign option that enables unlimited > royalty-free distribution of the report engine for externally facing > server and web deployment. > http://p.sf.net/sfu/businessobjects > ------------------------------------------------------------------------ > > _______________________________________________ > Dev-cpp-users mailing list > Dev...@li... > TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm > https://lists.sourceforge.net/lists/listinfo/dev-cpp-users > -- ************************************************ Prof. Alessandro Bugatti Docente di Informatica Istituto Tecnico Industriale Statale B. Castelli E-mail: ale...@is... Sito web: www.imparando.net ************************************************ |
From: Heedle B. <hee...@gm...> - 2009-04-29 03:25:20
|
Probably forgot using namespace std; On Sun, Apr 26, 2009 at 2:43 PM, John Higgins <jhi...@ya...> wrote: > I read in a book: "...You could use the STL stack class, which has an > iterator...". > > > > When I coded the following, I got a compiling error: undefined symbol > "iterator" > > #include <stack> > > stack<int> numbers; > > stack<int>::iterator cursor; > > I was trying to use iterator to display the content of a stack. > > > > Can anyone help me? > > > > Jess > > > > > > > > ------------------------------------------------------------------------------ > Crystal Reports - New Free Runtime and 30 Day Trial > Check out the new simplified licensign option that enables unlimited > royalty-free distribution of the report engine for externally facing > server and web deployment. > http://p.sf.net/sfu/businessobjects > _______________________________________________ > Dev-cpp-users mailing list > Dev...@li... > TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm > https://lists.sourceforge.net/lists/listinfo/dev-cpp-users > > |
From: John H. <jhi...@ya...> - 2009-05-01 19:34:56
|
Yes, I put "using namespce std;" I made sure of it and tried again, I still get compiling error: undefined symbol "iterator". Jess ________________________________ From: Heedle Blambeedle <hee...@gm...> To: John Higgins <jhi...@ya...> Cc: Dev...@li... Sent: Tuesday, April 28, 2009 8:25:04 PM Subject: Re: [Dev-C++] Iterator for stack and queue Probably forgot using namespace std; On Sun, Apr 26, 2009 at 2:43 PM, John Higgins <jhi...@ya...> wrote: I read in a book: "...You could use the STL stack class, which has an iterator...". When I coded the following, I got a compiling error: undefined symbol "iterator" #include <stack> stack<int> numbers; stack<int>::iterator cursor; I was trying to use iterator to display the content of a stack. Can anyone help me? Jess ------------------------------------------------------------------------------ Crystal Reports - New Free Runtime and 30 Day Trial Check out the new simplified licensign option that enables unlimited royalty-free distribution of the report engine for externally facing server and web deployment. http://p.sf.net/sfu/businessobjects _______________________________________________ Dev-cpp-users mailing list Dev...@li... TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm https://lists.sourceforge.net/lists/listinfo/dev-cpp-users |