Best C++ Compiler
-
- Posts: 91
- Joined: Mon Mar 05, 2012 4:51 pm
- Location: Bristol, UK
- Contact:
Best C++ Compiler
I am using VC++ 2010 at the moment, but is there a free compiler that exports for mac/linux?
Re: Best C++ Compiler
The answer is gcc. But I'm not 100% certain about the question as a compiler doesn't export but compile. There's 2 things - compiling on a platform or compiling for another target platform. The first one is usually the easier thing - like working on Windows and compiling for Windows or working on Linux and compiling for Linux. Gcc also supports targeting another platform than the one you work on, but it's more complicated and nothing I would recommend for a beginner.
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
-
- Posts: 91
- Joined: Mon Mar 05, 2012 4:51 pm
- Location: Bristol, UK
- Contact:
Re: Best C++ Compiler
If you was using VC++ before, try use NetBeans IDE: http://netbeans.org/downloads/index.html .
It works on Windows/Linux/MacOS platforms and uses GCC, you will be able to compile code from IDE window - same like in VC++.
It works on Windows/Linux/MacOS platforms and uses GCC, you will be able to compile code from IDE window - same like in VC++.
Re: Best C++ Compiler
crosscompiling is very hard I agree. I tried few times compiling also for linux from windows and don't succeded
Junior Irrlicht Developer.
Real value in social networks is not about "increasing" number of followers, but about getting in touch with Amazing people.
- by Me
Real value in social networks is not about "increasing" number of followers, but about getting in touch with Amazing people.
- by Me
Re: Best C++ Compiler
If you want to compile -for- linux -from- windows I have to question your sanity...
Re: Best C++ Compiler
http://metamod-p.sourceforge.net/cross- ... linux.html
anyway i abandoned the idea lot of time ago. Is probably easier install Linux and do all from Linux partition
anyway i abandoned the idea lot of time ago. Is probably easier install Linux and do all from Linux partition
Junior Irrlicht Developer.
Real value in social networks is not about "increasing" number of followers, but about getting in touch with Amazing people.
- by Me
Real value in social networks is not about "increasing" number of followers, but about getting in touch with Amazing people.
- by Me
Re: Best C++ Compiler
I'm not saying it can't be done. Merely that it's not really useful from any point of view.
Re: Best C++ Compiler
and that's why I never tried that again
Junior Irrlicht Developer.
Real value in social networks is not about "increasing" number of followers, but about getting in touch with Amazing people.
- by Me
Real value in social networks is not about "increasing" number of followers, but about getting in touch with Amazing people.
- by Me
-
- Admin
- Posts: 14143
- Joined: Wed Apr 19, 2006 9:20 pm
- Location: Oldenburg(Oldb), Germany
- Contact:
Re: Best C++ Compiler
Well, the Android SDK and lots of other tool suites do provide a way to cross compile even from Windows. But still it's often much easier to use a native environment. For OSX I doubt that there is any chance besides working on a Mac.
Re: Best C++ Compiler
does android have a native environment?
Some times ago goole announced a unified game platform.. maybe they will have too also online-compiling capabilities
Some times ago goole announced a unified game platform.. maybe they will have too also online-compiling capabilities
Junior Irrlicht Developer.
Real value in social networks is not about "increasing" number of followers, but about getting in touch with Amazing people.
- by Me
Real value in social networks is not about "increasing" number of followers, but about getting in touch with Amazing people.
- by Me
-
- Admin
- Posts: 14143
- Joined: Wed Apr 19, 2006 9:20 pm
- Location: Oldenburg(Oldb), Germany
- Contact:
Re: Best C++ Compiler
Yes of course, you can compile on andoroid systems. But I'd even count all other Linux systems in, which have a largely similar system layout and provide an environment which fits better to the compiler suite.
Re: Best C++ Compiler
Very nice, I'm tempted about using Irrlicht API + my rendering Engine core (openGL ES) and make Irrlicht becomes a Lightweight and Fast engine for Android in C++/plus Java wrapper.. better I stays with feet on ground else I'll do nothing more then nothing XD
Junior Irrlicht Developer.
Real value in social networks is not about "increasing" number of followers, but about getting in touch with Amazing people.
- by Me
Real value in social networks is not about "increasing" number of followers, but about getting in touch with Amazing people.
- by Me
-
- Posts: 1010
- Joined: Mon Oct 24, 2011 10:03 pm
- Location: 0x45 61 72 74 68 2c 20 69 6e 20 74 68 65 20 73 6f 6c 20 73 79 73 74 65 6d
Re: Best C++ Compiler
This, the sanest thing I have heard this week.hendu wrote:If you want to compile -for- linux -from- windows I have to question your sanity...
"this is not the bottleneck you are looking for"