EvilZone

Programming and Scripting => C - C++ => : bubzuru September 25, 2012, 03:34:38 PM

: Best C++ IDE (Windows)
: bubzuru September 25, 2012, 03:34:38 PM
ok this is going to far DevC++ is pissing me off
(the inline asm is bullshit (MinGw))

what ide\compiler do you guys use, recomend ?
im going to be coding windows apps, should i just use VS ?
seems like a cop out for some reason , i feel dirty using it

i love VS for C# but C++ dirty dirty boy ... ha
: Re: Best C++ IDE (Windows)
: s3my0n September 25, 2012, 03:55:49 PM
Try codeblocks. If not that then use an editor of your choice (notepad++, gvim) and command line compiler.
: Re: Best C++ IDE (Windows)
: bubzuru September 25, 2012, 04:43:14 PM
Try codeblocks. If not that then use an editor of your choice (notepad++, gvim) and command line compiler.

going to test codeblocks and tell you what i think.
what compiler do you use , im looking at all options here
: Re: Best C++ IDE (Windows)
: ca0s September 25, 2012, 05:01:48 PM
(the inline asm is bullshit (MinGw))
+1
I ended up using nasm and adding the object file to the project. Just declare your ASM functions as inline and you should have the same results, more or less.
: Re: Best C++ IDE (Windows)
: Ullen September 25, 2012, 05:41:25 PM
going to test codeblocks and tell you what i think.
what compiler do you use , im looking at all options here


use Gcc to compile.
http://gcc.gnu.org/ (http://gcc.gnu.org/)
: Re: Best C++ IDE (Windows)
: Daemon September 25, 2012, 07:10:14 PM
Codeblocks aall the way. Nice thing about it is that it comes with GCC so you don't have to download that as well. My suggestion? Grab the codeblocks with mingw installer. Then follow these instructions:
install
Have a code-gasm.
Repeat on code-gasm as desired

Good luck bubzuru, and feel free to talk to me for help with c++ I may not be as good as xires but I can still ddo a lot though idk win32api for guis. But I can help with the guts of a program and possibly help with thise times when you get a mental block and can't figure it out :)

In fact, same goes for everyone on here! If you need some c++ help id be more than happy to do what I can :)
: Re: Best C++ IDE (Windows)
: ajmal.josh September 25, 2012, 07:31:16 PM
I'm using WXDevCPP and gcc...
: Re: Best C++ IDE (Windows)
: TRAiN3R September 25, 2012, 09:19:51 PM
Already a topic on this?

http://evilzone.org/c-c/(c)-what-is-the-best-ide/msg22101/#msg22101

Most notiably:

Code:Blocks
http://www.codeblocks.org/

Dev-C++
http://www.bloodshed.net/dev/devcpp.html

Visual C++ 2010 Express
http://www.microsoft.com/visualstudio/en-us/products/2010-editions/visual-cpp-express

Eclipse IDE
http://www.eclipse.org/downloads/packages/eclipse-ide-cc-developers-includes-incubating-components/indigosr2

NetBeans IDE
http://netbeans.org/features/cpp/

So a simple google search led me to these results, why not just research their features and see which one you like best?

http://lmgtfy.com/?q=C%2B%2B+IDE+windows

Like the first 5 or so are links to those exact links I just posted! And all of them have been said by different members, so I believe you have your answer.

There are 5 Top FREE C++ IDE Software

Visual Studio Express 2010
Eclipse
NetBeans
Code:Blocks
Dev-C++
: Re: Best C++ IDE (Windows)
: bubzuru September 25, 2012, 09:45:39 PM
ok so now im going to install code::blocks, and tell you guys what i think
seems like everyone prefers gcc. MinGw sux ass imo

if not im just going to use VS. i have VS Pro installed allready so. i should be fine

@Daemon thank you for the enthusiasm. you will get shoutz in my first C++ release
and so mill you ca0s ..........
: Re: Best C++ IDE (Windows)
: 2r September 25, 2012, 10:36:41 PM
Best IDE for windows, imho, is VS. By far for debugging and code completion with direct api docs and reference etc. I hated the past few years though, I always used 2005 or 2008. If you dont want to use the IDE just add the bin dir to your path and you can use microsofts compiler directly. It is in my opinion the best option for pure windows development.

I use vim/gcc on the command line most of the time though, because I personally dont prefer IDEs.
: Re: Best C++ IDE (Windows)
: PhantasmagoricalTech September 26, 2012, 06:35:36 AM
Code:Blocks is pretty amazing.
: Re: Best C++ IDE (Windows)
: bubzuru September 26, 2012, 01:17:26 PM
ok i like code blocks. its like a fancy DevC++ i dont feel dirty using it
but i dont like gcc (just because of the dll entry point, inline asm)

anyone have any ideas about using the VS 2010 compiler with code blocks ?
i know i can use the 2003 ToolKit but i want to use the new compiler
: Re: Best C++ IDE (Windows)
: bubzuru September 26, 2012, 04:53:43 PM
just found this
OK, after checking, it STILL didnt work. But I got the regular installation to work (mostly because, getting the nightly, I was no longer afraid of messing things up).
Here is what I've done to make it work, and I hope I'll help someone with this.

Prerequisites:
Microsoft SDKs for Windows (in my case v7.0A)
Visual Studio C++ Express
Code::Blocks (worked with 10.05, idk about other versions)

Steps to compilation:
1. Create a new compiler in the Settings->Compiler and Debugger
2. Setup in Setup->Compiler and Debugger
-Toolchain Executables:
    -Compiler Installation Directory: C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC (standard in Visual Studio 2010 install)
    -C compiler - cl.exe
    -C++ compiler -cl.exe
    -linker for dynamic libs -link.exe
    -linker for static libs - link.exe
    -debugger - cdb.exe
    -resource compiler - rc.exe
    -make program - nmake.exe
    -Additional Paths:
        -C:\Program Files (x86)\Microsoft Visual Studio 10.0\common7\IDE (standard in Visual Studio 2010 install)
        -C:\Program Files (x86)\Microsoft SDKs\v7.0A (standart for Microsoft SDKs install)
        -C:\Program Files (x86)\Microsoft SDKs\v7.0A\bin (for a few libraries)

-Search Directories
    -Compiler:
        -C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include
        -C:\Program Files (x86)\Microsoft SDKs\v7.0A\include
    -Linker:
        -C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\lib
        -C:\Program Files (x86)\Microsoft SDKs\v7.0A\lib
    -Resource Compiler:
        -C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include
        -C:\Program Files (x86)\Microsoft SDKs\v7.0A\include

going to test it later
: Re: Best C++ IDE (Windows)
: Xires September 26, 2012, 08:34:44 PM
Code::Blocks (http://"http://www.codeblocks.org/") can be configured to use pretty much any other compilers that you may have.  It can work nicely with things like Qt, wx-toolkit, gtk, DirectX, etc.
: Re: Best C++ IDE (Windows)
: darkchild October 02, 2012, 12:53:50 AM
Not to digress from the current topic, but what is wrong with VS 2010 c++? or is more the idea of trying to stay away from proprietary stuff (aka microsoft)?

I use VS for c++ before that devc++, which is def not currently the best ide.
: Re: Best C++ IDE (Windows)
: bubzuru October 02, 2012, 02:47:09 PM
Not to digress from the current topic, but what is wrong with VS 2010 c++? or is more the idea of trying to stay away from proprietary stuff (aka microsoft)?

I use VS for c++ before that devc++, which is def not currently the best ide.

there is nothing wrong with VS imo its the best IDE but i cant use it.
cant say why it just feels funny

Code::Blocks ftw
: Re: Best C++ IDE (Windows)
: Xires October 03, 2012, 07:33:34 PM
Dev-C++ needs to die.  It's an old, deprecated project.  It hasn't been updated for many years so it doesn't come with a current version of MinGW, it doesn't support 64-bit code without some hackery, it doesn't work well with newer libs, it has bugs in the UI, takes more resources than necessary, etc.  Let it die.  Code::Blocks fully replaces Dev-C++ for all roles and more.  Don't use Dev-C++ and tell your friends to stop using it.
: Re: Best C++ IDE (Windows)
: EmilKXZ October 03, 2012, 08:28:45 PM
Totally agreed. Let DevC++ to die. An old friend used to say if you code in Windows, you should use Microsoft stuff. I always kind of disagree, because what if other tools let you do stuff that otherwise Microsoft wants to hide from you? Resource tricks for example.

I recommend you C++Builder. Yes, that one from Embarcadero. Give it a shot to the demo, if you like it, buy it. If not willing to pay, perhaps there's an "express version". There used to be I believe, can't recall.
: Re: Best C++ IDE (Windows)
: bubzuru October 03, 2012, 09:18:09 PM
Ok so

VC is the best (windows)compiler
VS is the best (windows IDE)

Code::Blocks is the best open IDE (for people who dont want to use VS like me)

so if you want to code c++ for windows
install VS 10, Windows SDK, Code::Blocks.... DONE !!

that way you can compile with gcc, VC 6+, VC 10 (any compiler) with a few clicks
i may write a guide with download links etc

anyways im piiiiissssseeeed soooooooo byyyyyyyyyyyyye

were the fuck is room 32B at