Rella
Rella

Reputation: 66975

Is there any online, html/flash/js based, free C++ editor that can compile code for ubuntu?

It can be opensource. I need it because I don't want to install virtual machine. So is there any online, html/flash/js based, free C++ (or at least C) compiler that can compile code simulating ubuntu c/c++ compiler and return built executable file to me? I heard that Mozilla had some cool online editors but I don't know if they have compilation options.

Upvotes: -4

Views: 2622

Answers (2)

UncleZeiv
UncleZeiv

Reputation: 18488

Codepad allows you to compile and run code snippets, which is good to quickly test ideas and/or share code quickly among friends; in no way it substitutes a good editor and programming environment.

Plus, in any non-trivial project you need external libraries, I don't know how you would be able to deal with that.

Just get over your laziness and install that virtual machine! I tried Virtualbox recently and it's very easy to set up.

Upvotes: 0

AlastairG
AlastairG

Reputation: 4314

I don't think you clearly understand the difference between an editor and a compiler.

An editor cannot compile code. A compiler doesn't help you to edit code. An IDE (Integrated Development Environment) incorporates the features of both an editor and a compiler.

Are you asking if anyone knows of an IDE that can compile for Ubuntu?

What platform do you want it to run on?

Upvotes: 1

Related Questions