free C/C++ development environment?

Sharky Forums


Results 1 to 9 of 9

Thread: free C/C++ development environment?

  1. #1
    Hammerhead Shark Big_Mac's Avatar
    Join Date
    Feb 2003
    Location
    Windsor, Onatrio, CANADA
    Posts
    1,672

    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.

  2. #2
    Hammerhead Shark mikead_99's Avatar
    Join Date
    Jun 2003
    Location
    DC 'Burbs
    Posts
    2,092
    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.

  3. #3
    Reef Shark barton boi's Avatar
    Join Date
    Sep 2003
    Location
    California
    Posts
    364
    • 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

  4. #4
    Expensive Sushi JSClark's Avatar
    Join Date
    Oct 2003
    Posts
    17
    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 .
    ~JSC

  5. #5
    Reef Shark archaned's Avatar
    Join Date
    Sep 2000
    Location
    Brooklyn
    Posts
    447
    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 |

  6. #6
    Hammerhead Shark mikead_99's Avatar
    Join Date
    Jun 2003
    Location
    DC 'Burbs
    Posts
    2,092
    I agree, I hate the thought of being tied to a M$ environment, but for the price you really can't beat it.

  7. #7
    Hammerhead Shark
    Join Date
    Feb 2001
    Location
    Columbus, Ohio
    Posts
    1,277
    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.

  8. #8
    Hammerhead Shark Tekime's Avatar
    Join Date
    Dec 2001
    Location
    Falmouth, ME
    Posts
    2,347
    Dev-C++ is the best free IDE I've used.
    Stuff and stuff

  9. #9
    Catfish gameboy1234's Avatar
    Join Date
    Aug 2002
    Posts
    238
    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
  •