According to the official documentation, I need to install Python 2.X, Node.js (0.7.3 or above), gcc 4.6, and clang 3.2. And indeed, they are all installed.
Edit: Ok, I've updated this with a much simpler test case, which also fails.
hello.cpp
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!";
return 0;
}
My attempt to compile using:
For Google's sake, the error message is:
IOError: [Errno 2] No such file or directory: 'c:\users\jonathan\appdata\local\temp\emscripten_temp_7q2hkb\libcxx\libcxx.bc'
Why is this Emscripten-generated file not available?