Difference between revisions of "Talk:Javascript Mess"

From Archiveteam
Jump to navigation Jump to search
Line 5: Line 5:
=== current status ===
=== current status ===


compiling, with some help from azakai and some headbanging. http://wizardmode.com/jsmess/logs/%23jsmess.11-04-17-12.log
moving to github to centralize the code changes and compilation instructions: https://github.com/ziz/jsmess/wiki [[User:Devesine|Devesine]] 23:32, 5 November 2011 (UTC)
 
Still going through - the Debug+Assetions llvm is really slow.  Added a few more -Wno-whatevers.
 
[[User:Devesine|Devesine]] 15:27, 5 November 2011 (UTC)
 
=== Useful tips ===
 
* Make sure you grab a fresh copy of llvm, clang, v8 (I'm not using spidermonkey yet) to point emscripten at
* Build a non-debug version of llvm+clang - it will probably save a *lot* of time (there are a lot of files to compile) - `configure --enable-optimized --disable-assertions` should do it
* Build v8 by doing `scons d8` - using console=readline (or possibly snapshot=on or visibility=default) seems to break emscripten's compilation ability
* You will need to build MAME/MESS natively, to have access to the tools ( cp mess-native/obj/osdmini/mess/build/* mess/obj/osdmini/mess/build )
* There are an awful lot of warnings that need to be made into non-errors to compile successfully - maybe some of them are indicitive of bugs in MAME/MESS?

Revision as of 23:32, 5 November 2011

Devesine's Emscripten attempt

Shouldn't prevent anyone else from doing so as well, but I'm going to give the whole "whang it into Emscripten and see what explodes" thing a shot over the next few days. Devesine 15:39, 3 November 2011 (UTC)

current status

moving to github to centralize the code changes and compilation instructions: https://github.com/ziz/jsmess/wiki Devesine 23:32, 5 November 2011 (UTC)