|
-
Hammerhead Shark
free C/C++ development environment?
I'm looking for a decent free C/C++ compiler/editor (well, a dev environment really).
anyone have a favourite?
(for the windows platform)
Originally posted by Ferrett
I'M SORRY. There were hot girls. I got distracted.
-
Hammerhead Shark
Phew! Haven't seen or heard of anything out there. You might be able to find a free compiler and Textpad can give you a decent editor. (Won't keep your preferences unless you lisence it for like $40)
If you can claim to be a student you can get pretty big discounts. I picked up visual studio.net for $99. It's the "Academic" version, which is "Pro" in a different box.
-
Reef Shark
- 1.5GHZ Pentium M | 768MB PC2700 | ATI Radeon 9600 pro 128MB Turbo | 60GB 7200RPM | 4X DVD+RW | 15.4" WSXGA+ | 802.11b | Logitech MX310 | XP Pro | Slackware 10
-
Expensive Sushi
I'm a MS VC++ 6.0 boy myself ATM. The compiler that comes with the Visual Studio suite for C++ works just fine for me. I don't have much time to play around with different compilers, but eventually I'll give them a try .
-
Reef Shark
Yeh I ordered Visual Studio .NET 2003 Academic Version for $99.
Full price its $1079. You get VB,VC++,C#, etc.
Its not free, but the value is immense at that price.
GIGABYTE GA-MA785G-UD3H | Phenom II X3 720 @ 3.2Ghz | G.SKILL F2-8500CL5D-4GBPK |
XFX 5770 | 2 x Seagate 147GB SAS | Seagate 640GB | WD 640GB | SAMSUNG SH-S182M |
Plextor 708A | Logitech X-230 | Antec 550 Neo HE | Lian Li PC61 | BENQ fp91g+ | Win7 RC |
-
Hammerhead Shark
I agree, I hate the thought of being tied to a M$ environment, but for the price you really can't beat it.
-
My personal opinion (take it as that) is to just use a text editor with syntax highlighting. Getting tied into an IDE can hurt you down the line if you ever find yourself stuck without it. And if you're ever forced to use an IDE, you can just use the syntax highlighting part and ignore the rest.
-
Hammerhead Shark
Dev-C++ is the best free IDE I've used.
-
Catfish
Well Bloodshed Dev C++ is very good, I've used it some.
What I really like though is to assemble my own. I have MinGW (http://mingw.org/) installed for the compiler. Then I added MSYS (http://mingw.org/ yes that's the same link) for some unix like tools.
Then head over to http://www.vim.org/ and pick up Gvim for win32. Vim has a learning curve like a cliff face, but if you want portability, this is it. Works the same as vi on unix land and almost every IDE has a vi compatibility mode because so many programmers use it.
Last, set up your _vimrc and _gvimrc files. Just copy the g*vimrc_example.vim files, they work great. The add to the end of _vimrc file:
Code:
set autowrite
set ignorecase
set ts=4 sw=4
set sh=sh
set shellpipe=>%s\ 2>&1
And you are set!
Hint: to use this, set up a makefile to compile a simple helloworld program. Then from gvim, type :make in command mode and watch the cools stuff happen.
More good docs on make and the gcc compiler over at http://www.gnu.org and the "tips" section on http://www.vim.org is probably the best way to figure out practical things in vim.
Good luck! But post back here if you have any questions.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
|