Frictional Games Forum (read-only)
Looking for a Compiler - Printable Version

+- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum)
+-- Forum: Frictional Games (https://www.frictionalgames.com/forum/forum-3.html)
+--- Forum: Off-Topic (https://www.frictionalgames.com/forum/forum-16.html)
+--- Thread: Looking for a Compiler (/thread-23086.html)

Pages: 1 2


Looking for a Compiler - CarnivorousJelly - 09-13-2013

Hello Forum Go-ers,

I'm alive, still working on Lucid, and juggling 5 university courses :D

(Un)fortunately for me, one of those university courses happens to be ENGG 233, Computing for Engineers. I'm going to need a program for compiling C++ scripts into working programs. If you happen to have any beautiful links to free compilers, I would be forever in your debt c:

Hopefully Off-Topic is an A-okay place to put this thread, apologies to the mod who ends up moving this if it isn't.

Cheers,
~ Kiandra (Emily)


RE: Looking for a Compiler - Kreekakon - 09-13-2013

Nah this is the right place for such a thread Smile

About the thread matter...I assume you might have tried this already, but have you considered googling "c++ compiler", and see what that turns up?


RE: Looking for a Compiler - CarnivorousJelly - 09-13-2013

I did c: The results were just articles about what a compiler is and forum pages with dead links.


RE: Looking for a Compiler - FlawlessHappiness - 09-13-2013

How about "c++ compiler download"? Smile

https://www.google.dk/search?q=c%2B%2B+compiler+download&oq=c%2B%2B+compiler+download&aqs=chrome..69i57j0l3.4156j0&sourceid=chrome&ie=UTF-8


RE: Looking for a Compiler - Ghieri - 09-13-2013

Try to get a student version of Microsoft studio C++. Considered one of the best.


RE: Looking for a Compiler - felixmole - 09-13-2013

gcc works on most platforms and can compile C++.


RE: Looking for a Compiler - kojack - 09-13-2013

It depends on which operating system you are using.

For windows, the popular ones are MingW (a port of gcc) and Visual Studio.
You can get Express editions of Visual Studio for free.
http://www.microsoft.com/visualstudio/eng/products/visual-studio-express-products

I'm a bit biased though, I teach C++ using Visual Studio for a living.

It is also going to depend on what the course actually supports or requires. A specific compiler might be required by the teaching staff.


RE: Looking for a Compiler - Tomato Cat - 09-14-2013

Codeblocks is free.


RE: Looking for a Compiler - kojack - 09-14-2013

(09-14-2013, 06:32 PM)Tomato Cat Wrote: Codeblocks is free.

One advantage of Code::Blocks is that it's fairly portable.
Here it is running on my Pandora (linux based arm mini laptop, as small as a nintendo ds):
[Image: img3731vo.jpg]

Smile

Although technically Code::Blocks is not a compiler. It's the interface, the actual back end that does the compiling is usually GCC (or the MingW version of GCC on windows).


RE: Looking for a Compiler - plutomaniac - 09-14-2013

I use NetBeans IDE