user2891256
user2891256

Reputation: 29

Hosting C++ application on Google Compute Engine

I have seen that Google App Engine does support yet C++ code. Can I run a C++ application (.exe) on Google Compute Engine within an Apache web server?

Upvotes: 0

Views: 921

Answers (1)

Benson
Benson

Reputation: 22847

Yes, that should work just fine. Please note, though, that we currently only support linux based operating systems. If (as the .exe extension suggests) you have C++ code compiled for windows, you may need to recompile or even rewrite parts of it if it's not compatible with Linux.

Upvotes: 1

Related Questions