This is just a convenience thing. Is there a way to use C++ sort of like an interpreted language, only in the sense that you could compile and run it without outputting a binary file. This is of course assuming it's a single c++ that doesn't need any other libraries to run.

I'm just wondering if this is possible.

link|improve this question

73% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Output to a temporary file (e.g. in /tmp) which you remove afterwards, or leave it and overwrite the next time.

You may be interested in IGCC.

link|improve this answer
yeah. IGCC is the way to go. – Tyson Oct 31 '10 at 8:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.