Reputation: 29
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
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