Open Happy-Ferret opened 9 years ago
Yeah, it's been a long time since I built this repository, and something has changed since. Try perhaps changing the include to #include <SDL/SDL.h>
, that might work. The intent is that it should pick up the Emscripten-provided SDL "1.4" header (here https://github.com/kripken/emscripten/blob/master/system/include/SDL/SDL.h), as opposed to a precompiled SDL 2 or something installed to the system.
Thanks.
One step closer. Now I'm getting this (on both Mac and GNU/Linux, btw).
C++ base/main.o
In file included from base/main.cpp:39:
In file included from ./engines/engine.h:26:
./common/str.h:83:3: warning: anonymous types declared in an anonymous union are
an extension [-Wnested-anon-types]
struct {
^
base/main.cpp:364:2: error: use of undeclared identifier 'emscripten_async_call'
emscripten_async_call(emscriptenUpdate, 0, 1);
^
base/main.cpp:373:6: error: use of undeclared identifier 'directoryExists'
if (directoryExists("/dott")) { args[1] = "-p/dott"; args[2] = "...
^
base/main.cpp:374:13: error: use of undeclared identifier 'directoryExists'
if (directoryExists("/monkey")) { args[1] = "-p/monkey"; args[2...
^
base/main.cpp:375:13: error: use of undeclared identifier 'directoryExists'
if (directoryExists("/samnmax")) { args[1] = "-p/samnmax"; args[...
^
base/main.cpp:376:13: error: use of undeclared identifier 'directoryExists'
if (directoryExists("/atlantis")) { args[1] = "-p/atlantis"; arg...
^
base/main.cpp:377:13: error: use of undeclared identifier 'directoryExists'
if (directoryExists("/indy3")) { args[1] = "-p/indy3"; args[2] ...
^
base/main.cpp:378:13: error: use of undeclared identifier 'directoryExists'
if (directoryExists("/comi")) { args[1] = "-p/comi"; args[2] = "comi"; }
^
base/main.cpp:379:6: error: use of undeclared identifier 'directoryExists'
if (directoryExists("/loom")) { args[1] = "-p/loom"; args[2] = "loom"; }
^
base/main.cpp:380:6: error: use of undeclared identifier 'directoryExists'
if (directoryExists("/maniac")) { args[1] = "-p/maniac"; args[2...
^
1 warning and 9 errors generated.
make: *** [base/main.o] Error 1
When I manually call em++, I'm told that I'm missing components such as the correct LLVM version required by emscripten, so I assume I'm simply missing parts of the toolchain.
Setting it all up as per the following instructions now. http://kripken.github.io/emscripten-site/docs/getting_started/downloads.html
EDIT: Now I'm really confused. Isn't the SDK supposed to install the emscripten specific version of LLVM? Literally the first message I get when launching the installer is that it can't find the emscripten specific version of LLVM.
I got the same problems. I changed the SDL.h include manually which brought me to the "undeclard identifier error. Any recommendations how to proceed?
Trying to compile emscripten-scummvm under Mac OS X 10.9 yields the following errors.
Am I assuming correctly that it requires older SDL headers I might be lacking or is this something entirely different?
I've also tried building this with an older emscripten fork (the one hosted in one of your repositories), hoping this was simply an architectural change in the newer releases of emscripten.
Unfortunately, to no avail.