Home Forums Gamescan Chat42 About
* Login   * Register * FAQ    * Search
It is currently Fri 07-04-2025 9:30AM

All times are UTC - 6 hours




Post new topic Reply to topic  [ 16 posts ]  Go to page 1, 2  Next
Author Message
 Post subject: Windows based developement environment
PostPosted: Mon 10-23-2006 6:23PM 
Offline
Major

Joined: Thu 08-24-2006 11:56AM
Posts: 250
Location: Rolla

Source: VPN
I am currently in CS53 and 54 and i dont like having to use jpico and SSH to program. Can anyone reccommend a FREE development environment that i can code and compile in and it will be compatible with the g++ compiler and jpico commands we have been taught?

_________________
If you want to tell people the truth, make them laugh, otherwise they'll kill you.
-Oscar Wilde


Top
 Profile  
    
 Post subject:
PostPosted: Mon 10-23-2006 8:26PM 
Offline
Brigadier General

Joined: Tue 01-22-2002 12:35PM
Posts: 1057
Location: Shawnee Mission, KS

Source: Off Campus
vi


Top
 Profile E-mail  
    
 Post subject:
PostPosted: Mon 10-23-2006 8:33PM 
Offline
Major
User avatar

Joined: Mon 09-09-2002 5:37PM
Posts: 474

Source: Off Campus
I use UltraEdit with WinSCP3 to send files back and forth, but UltraEdit is shareware. Eclipse for C/C++ is also out there, but I've never really tried that..


Top
 Profile  
    
 Post subject:
PostPosted: Mon 10-23-2006 8:43PM 
Offline
Brigadier General

Joined: Tue 01-22-2002 12:35PM
Posts: 1057
Location: Shawnee Mission, KS

Source: Off Campus
Oops...crap...you wanted a Windows program. I kinda breezed past the title.

Eclipse is good, but it does not come with an internal C/C++ compiler. In Linux, this isn't really a problem, since it comes with gcc (disclaimer: I've never used Eclipse for anything but Java). In Windows it's a bigger problem, though. I suppose, if you had the patience, you could put together a Cygwin install that had Eclipse and gcc installed on it.


Top
 Profile E-mail  
    
 Post subject:
PostPosted: Tue 10-24-2006 10:42AM 
Offline
Brigadier General
User avatar

Joined: Mon 09-06-2004 7:51PM
Posts: 1916
Location: The B Barn

Source: Off Campus
Notepad.

Just run the command dos2unix on the file before you compile.


Top
 Profile E-mail  
    
 Post subject:
PostPosted: Tue 10-24-2006 11:01AM 
Offline
Brigadier General

Joined: Tue 01-22-2002 12:35PM
Posts: 1057
Location: Shawnee Mission, KS

Source: Off Campus
FrankieM wrote:
Notepad.

Just run the command dos2unix on the file before you compile.


Actually, if you want to use Notepad, check out Notepad++:

http://sourceforge.net/projects/notepad-plus/


Top
 Profile E-mail  
    
 Post subject:
PostPosted: Tue 10-24-2006 11:30AM 
Offline
Major
User avatar

Joined: Sun 07-16-2006 4:19AM
Posts: 221

Source: TJ South
textpad http://www.textpad.com/

_________________
M-S-M U-M-R M-O-U-S-T
Go ahead, say it to the Mickey Mouse Club Theme.
"Chaos reigns within.
Reflect, repent, and reboot.
Order shall return."
-
see what you can do to help save the internet at http://www.savetheinternet.com/


Top
 Profile  
    
 Post subject:
PostPosted: Tue 10-24-2006 11:48AM 
Offline
Brigadier General
User avatar

Joined: Sun 08-24-2003 3:47PM
Posts: 1049
Location: Behind YOU!

Source: Kelly Hall
I second textpad. You can save a unix formated text file. Then just ssh to compile and run.

_________________
"Why is it that we must always choose between certain death and probable death?" ~ Clank, Ratchet and Clank Future: Tools of Destruction


Top
 Profile  
    
 Post subject:
PostPosted: Tue 10-24-2006 1:23PM 
Offline
Colonel

Joined: Sun 05-01-2005 4:29PM
Posts: 501

Source: EE Building
I like notepad++ myself. It's free/open source and compact.


Top
 Profile  
    
 Post subject:
PostPosted: Tue 10-24-2006 1:25PM 
Offline
Major General
User avatar

Joined: Wed 08-25-2004 8:55PM
Posts: 2969

Source: MST Wireless
Fattybuddha wrote:
I use UltraEdit with WinSCP3 to send files back and forth, but UltraEdit is shareware. Eclipse for C/C++ is also out there, but I've never really tried that..



That can be taken care of...




....by, uh, buying the program of course!


Top
 Profile  
    
 Post subject:
PostPosted: Tue 10-24-2006 7:21PM 
Offline
Colonel
User avatar

Joined: Sun 08-18-2002 10:33AM
Posts: 751
Location: Kansas City, KS

Source: Off Campus
Are you looking for an IDE/editor or a win32 port of GCC?

_________________
It is by caffeine alone I set my mind in motion.
It is by the beans of Java the thoughts acquire speed,
the hands acquire shaking, the shaking becomes a warning.
It is by caffeine alone I set my mind in motion.


Top
 Profile E-mail  
    
 Post subject:
PostPosted: Tue 10-24-2006 8:28PM 
Offline
more like GAY SWIFT
User avatar

Joined: Mon 03-29-2004 10:45PM
Posts: 229

Source: Fidelity
You could use Microsoft Visual Studio, I actually used to do that for 53. Get C++ 2005 Express Edition (free) and start a new project -> win32 console app. Make sure you select empty project. Some of the syntax is different in gcc, so make sure you compile/valgrind it in unix before you turn it in.

_________________
I have a cheese-shredder, which is its positive name. They don't call it by its negative name, cause no one would buy it: sponge-ruiner. Because I wanted to clean it, and now I have little bits of sponge that would melt easily over tortilla chips.


Top
 Profile  
    
 Post subject:
PostPosted: Tue 10-24-2006 9:41PM 
Offline
Brigadier General

Joined: Tue 01-22-2002 12:35PM
Posts: 1057
Location: Shawnee Mission, KS

Source: Off Campus
GenPFault wrote:
Are you looking for an IDE/editor or a win32 port of GCC?


Well, if a Win32 port of GCC is available,you could use Eclipse as your IDE. The Wiki article for GCC led me to think that a Win32 port of it does not exist.


Top
 Profile E-mail  
    
 Post subject:
PostPosted: Wed 10-25-2006 12:35AM 
Offline
Colonel
User avatar

Joined: Sun 08-18-2002 10:33AM
Posts: 751
Location: Kansas City, KS

Source: Off Campus
zkissane wrote:
GenPFault wrote:
Are you looking for an IDE/editor or a win32 port of GCC?


Well, if a Win32 port of GCC is available,you could use Eclipse as your IDE. The Wiki article for GCC led me to think that a Win32 port of it does not exist.

*NOTANOWL*

_________________
It is by caffeine alone I set my mind in motion.
It is by the beans of Java the thoughts acquire speed,
the hands acquire shaking, the shaking becomes a warning.
It is by caffeine alone I set my mind in motion.


Top
 Profile E-mail  
    
 Post subject:
PostPosted: Wed 10-25-2006 1:23PM 
Offline
Major
User avatar

Joined: Fri 09-03-2004 8:00PM
Posts: 438

Source: Off Campus
Bloodshed Dev C++ works for me (Windows IDE, uses gcc I think).


Top
 Profile  
    
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 16 posts ]  Go to page 1, 2  Next

All times are UTC - 6 hours


Who is online

Users browsing this forum: No registered users and 0 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group