About Monkey 2 › Forums › Monkey 2 Programming Help › Emscripten: 'em++' is not recognized
This topic contains 57 replies, has 7 voices, and was last updated by
Richard Betson
1 year, 3 months ago.
-
AuthorPosts
-
September 16, 2017 at 10:28 pm #10551
Where are you guys getting 1.37.9?
When I follow the tutorial/install instructions for emscripten, I end up with 1.37.1September 16, 2017 at 10:40 pm #10553Yeah the itch.io release seems to work.
What’s different with the development branch from github then?
Cause I was using the latest Monkey 2 version and Ted2Go.However, running the app I get this error in the browser when compiled to wasm:
“Assertion failed: on the web, we need the wasm binary to be preloaded and set on Module[‘wasmBinary’]. emcc.py will do that for you when generating HTML (but not JS)”Using asmjs I get nothing.. it says ‘downloading’ then it shows nothing.
September 16, 2017 at 10:42 pm #10554September 16, 2017 at 10:45 pm #10555Yeah that’s where I got mine.
And I’ve done all the steps from the instructions there.
But as you can see here, the installer grab emscripten-1.37.1MS DOS1234567891011121314151617181920G:\tools\Monkey2-itchio\devtools\emscripten>emsdk updateG:\tools\Monkey2-itchio\devtools\emscripten>emsdk install latestUpdate complete, however skipped fetching the Emscripten tags, since git was not found.If you want to compile one of the tagged releases from source, please install git by typing 'emsdk install git-1.9.4', or alternatively by installing it manually from http://git-scm.com/downloads . If you install git manually, remember to add it to PATH.If you are not looking to build Emscripten from source, you can safely ignore this message.Installing SDK 'sdk-1.37.1-64bit'..Installing tool 'clang-e1.37.1-64bit'..The contents of file 'llvm/tag/win_64bit/emscripten-llvm-e1.37.1.zip' already exist in destination 'G:/tools/Monkey2-itchio/devtools/emscripten/clang/e1.37.1_64bit', skipping.Done installing tool 'clang-e1.37.1-64bit'.Installing tool 'node-4.1.1-64bit'..The contents of file 'node_4.1.1_64bit.zip' already exist in destination 'G:/tools/Monkey2-itchio/devtools/emscripten/node/4.1.1_64bit', skipping.Done installing tool 'node-4.1.1-64bit'.Installing tool 'python-2.7.5.3-64bit'..The contents of file 'python_2.7.5.3_64bit.zip' already exist in destination 'G:/tools/Monkey2-itchio/devtools/emscripten/python/2.7.5.3_64bit', skipping.Done installing tool 'python-2.7.5.3-64bit'.Installing tool 'emscripten-1.37.1'..The contents of file 'https://github.com/kripken/emscripten/archive/1.37.1.zip' already exist in destination 'G:/tools/Monkey2-itchio/devtools/emscripten/emscripten/1.37.1', skipping.Done installing tool 'emscripten-1.37.1'.Done installing SDK 'sdk-1.37.1-64bit'.September 16, 2017 at 10:49 pm #10556Try entirely removing emscripten and reinstalling.
September 16, 2017 at 10:56 pm #10557It’s still downloading 1.37.1, even on a computer that’s never even had emscripten nor Monkey 2 on it :S
September 16, 2017 at 10:57 pm #10558I had a similar problem a time ago with the not found message from path. I gave up and installed the emscripten installer that was shown in the older ted2go instruction window and that worked. Is an older emscripten though…
September 16, 2017 at 11:13 pm #10559I recommend the emscripten-discuss google group, they’re usually pretty cool and helpful there. For starters, just try and get 1.37.9 going from the command line.
I’m in a similar situation on macos, so might see you there myself soon, emscripten hasn’t worked for me on macos for about 6 months now, need to attempt a major clean/reinstall (again).
If anyone’s feeling brave, I’d love to see a monkey2 devtools package that ‘just worked’. Last time I attempted this it ended in tears though. But with the new portable installer this might be easier now?
September 16, 2017 at 11:14 pm #10560If anyone’s feeling brave, I’d love to see a monkey2 devtools package that ‘just worked’.
That’s exactly what I’m trying to do heh, I keep Monkey 2 on a USB stick since I’m always jumping between computers.
MSVC is already working.
Emscripten isn’t working at all T_T
I can’t find Emscripten path in env_*.txt though?September 16, 2017 at 11:40 pm #10563Also, doing the EXACT same thing with the Dev version of M2 as I did with the itch.io version, I still get:
“***** Fatal mx2cc error *****
Invalid value for ‘apptype’ option: ‘wasm’ – must be ‘gui’ or ‘console'”So I’m pretty sure something’s up with the dev version and not my emscripten install…
And I’ve figured out that you need to run ’emsdk install git-1.9.4′ in order for it to fetch the 1.37.9 version.
I still get the same error though.September 16, 2017 at 11:58 pm #10564Okay sorry for the spam here, but I copied ‘mx2cc_windows.exe’ from the Itch.io version into my Github dev branch downloaded Monkey 2 version, the version that displays that error… well with the Itch.io version of ‘mx2cc_windows.exe’ it doesn’t give me that error any more.
So yeah… Newer dev version has some sort of issue.
September 17, 2017 at 12:25 am #10565Have you rebuilt mx2cc? You should *always* do this when dealing with the dev branch, as I very seldom push the binary because it bloats the repos so much. I am planning on removing it altogether some time soon.
So best/safest practice is to always rebuildall after git pull from dev branch. Are you doing this? If you are having problems with latest dev even after a rebuildall, please post a bug report in github issues.
September 17, 2017 at 12:28 am #10566I think I’ve got it…
I always rebuild with MX2_USE_MSVC=1
And when you do that, Ted2Go etc. doesn’t seem to get moved to their ‘correct’ folder after ‘rebuildall’
So of course the compiler was old! Cause it didn’t get properly moved to the ‘bin’ folder when using MSVC!And here I am blaming the new version! Hehe
September 17, 2017 at 12:47 am #10567I always rebuild with MX2_USE_MSVC=1
Aha! Yes, this will cause updatemx2cc to fail as I haven’t taken into account rebuilding mx2cc with MSVC. I only really intended it to be used to speed up compiling/linking on the c++ side.
Sorry about that, things are getting a wee bit involved building from source these days!
September 17, 2017 at 2:14 am #10568Okay Mark. I finally got time to install the itch.io version. I no longer get that error but now I get this error when trying to run the gridshooter game.
Mx2cc version 1.1.07
***** Building app ‘/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.monkey2′ *****
Parsing…
Semanting…
Translating…
Compiling…
Linking /Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.products/Emscripten/Gridshooter.js…
Build error: System command ’em++ -s USE_SDL=2 -s TOTAL_MEMORY=268435456 -s DISABLE_EXCEPTION_CATCHING=1 -O2 –preload-file “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/assets/@/assets” -s BINARYEN=1 -s BINARYEN_TRAP_MODE=’allow’ -o “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.products/Emscripten/Gridshooter.js” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1_1_1_1_1modules_2mojo_2mojo.buildv1.1.07_2emscripten_0debug_2include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1_1_1_1_1modules_2std_2std.buildv1.1.07_2emscripten_0debug_2include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1_1_1_1_1modules_2stb_5vorbis_2stb_5vorbis.buildv1.1.07_2emscripten_0debug_2include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1_1_1_1_1modules_2stb_5image_5write_2stb_5image_5write.buildv1.1.07_2emscripten_0debug_2include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1_1_1_1_1modules_2stb_5image_2stb_5image.buildv1.1.07_2emscripten_0debug_2include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1_1_1_1_1modules_2miniz_2miniz.buildv1.1.07_2emscripten_0debug_2include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1_1_1_1_1modules_2sdl2_2sdl2.buildv1.1.07_2emscripten_0debug_2include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1_1_1_1_1modules_2jni_2jni.buildv1.1.07_2emscripten_0debug_2include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1_1_1_1_1modules_2openal_2openal.buildv1.1.07_2emscripten_0debug_2include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1_1_1_1_1modules_2gles20_2gles20.buildv1.1.07_2emscripten_0debug_2include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1_1_1_1_1modules_2libc_2libc.buildv1.1.07_2emscripten_0debug_2include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1_1_1_1_1modules_2freetype_2freetype.buildv1.1.07_2emscripten_0debug_2include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1_1_1_1_1modules_2emscripten_2emscripten.buildv1.1.07_2emscripten_0debug_2include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1_1_1_1_1modules_2monkey_2monkey.buildv1.1.07_2emscripten_0debug_2include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0gridshooter.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0src_02orb.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0src_02bullet.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0src_02player.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0src_02actor.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0src_02renderwindow.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0src_02area.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0gamegraphics_02gamegraphics.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0gamegraphics_02src_02background.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0gamegraphics_02src_02tilegraphics.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0gamegraphics_02src_02sprite.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0std_0geom_02rect.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0std_0collections_02container.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0std_0collections_02stack.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0std_0collections_02list.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0std_0collections_02deque.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0std_0collections_02map.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0monkey_0math.cpp.o” “/Applications/Monkey2-v1.1.07/modules/mojo/mojo.buildv1.1.07/emscripten_debug/mojo.a” “/Applications/Monkey2-v1.1.07/modules/std/std.buildv1.1.07/emscripten_debug/std.a” “/Applications/Monkey2-v1.1.07/modules/stb-vorbis/stb-vorbis.buildv1.1.07/emscripten_debug/stb-vorbis.a” “/Applications/Monkey2-v1.1.07/modules/stb-image-write/stb-image-write.buildv1.1.07/emscripten_debug/stb-image-write.a” “/Applications/Monkey2-v1.1.07/modules/stb-image/stb-image.buildv1.1.07/emscripten_debug/stb-image.a” “/Applications/Monkey2-v1.1.07/modules/miniz/miniz.buildv1.1.07/emscripten_debug/miniz.a” “/Applications/Monkey2-v1.1.07/modules/sdl2/sdl2.buildv1.1.07/emscripten_debug/sdl2.a” “/Applications/Monkey2-v1.1.07/modules/jni/jni.buildv1.1.07/emscripten_debug/jni.a” “/Applications/Monkey2-v1.1.07/modules/openal/openal.buildv1.1.07/emscripten_debug/openal.a” “/Applications/Monkey2-v1.1.07/modules/gles20/gles20.buildv1.1.07/emscripten_debug/gles20.a” “/Applications/Monkey2-v1.1.07/modules/libc/libc.buildv1.1.07/emscripten_debug/libc.a” “/Applications/Monkey2-v1.1.07/modules/freetype/freetype.buildv1.1.07/emscripten_debug/freetype.a” “/Applications/Monkey2-v1.1.07/modules/emscripten/emscripten.buildv1.1.07/emscripten_debug/emscripten.a” “/Applications/Monkey2-v1.1.07/modules/monkey/monkey.buildv1.1.07/emscripten_debug/monkey.a” ‘ failed.em++ -s USE_SDL=2 -s TOTAL_MEMORY=268435456 -s DISABLE_EXCEPTION_CATCHING=1 -O2 –preload-file “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/assets/@/assets” -s BINARYEN=1 -s BINARYEN_TRAP_MODE=’allow’ -o “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.products/Emscripten/Gridshooter.js” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1_1_1_1_1modules_2mojo_2mojo.buildv1.1.07_2emscripten_0debug_2include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1_1_1_1_1modules_2std_2std.buildv1.1.07_2emscripten_0debug_2include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1_1_1_1_1modules_2stb_5vorbis_2stb_5vorbis.buildv1.1.07_2emscripten_0debug_2include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1_1_1_1_1modules_2stb_5image_5write_2stb_5image_5write.buildv1.1.07_2emscripten_0debug_2include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1_1_1_1_1modules_2stb_5image_2stb_5image.buildv1.1.07_2emscripten_0debug_2include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1_1_1_1_1modules_2miniz_2miniz.buildv1.1.07_2emscripten_0debug_2include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1_1_1_1_1modules_2sdl2_2sdl2.buildv1.1.07_2emscripten_0debug_2include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1_1_1_1_1modules_2jni_2jni.buildv1.1.07_2emscripten_0debug_2include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1_1_1_1_1modules_2openal_2openal.buildv1.1.07_2emscripten_0debug_2include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1_1_1_1_1modules_2gles20_2gles20.buildv1.1.07_2emscripten_0debug_2include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1_1_1_1_1modules_2libc_2libc.buildv1.1.07_2emscripten_0debug_2include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1_1_1_1_1modules_2freetype_2freetype.buildv1.1.07_2emscripten_0debug_2include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1_1_1_1_1modules_2emscripten_2emscripten.buildv1.1.07_2emscripten_0debug_2include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1_1_1_1_1modules_2monkey_2monkey.buildv1.1.07_2emscripten_0debug_2include_2_0r.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0gridshooter.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0src_02orb.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0src_02bullet.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0src_02player.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0src_02actor.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0src_02renderwindow.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0src_02area.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0gamegraphics_02gamegraphics.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0gamegraphics_02src_02background.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0gamegraphics_02src_02tilegraphics.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0gamegraphics_02src_02sprite.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0std_0geom_02rect.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0std_0collections_02container.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0std_0collections_02stack.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0std_0collections_02list.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0std_0collections_02deque.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0std_0collections_02map.cpp.o” “/Applications/Monkey2-v1.1.07/bananas/gridshooter/gridshooter.buildv1.1.07/emscripten_debug/build/_1src_2gridshooter_0monkey_0math.cpp.o” “/Applications/Monkey2-v1.1.07/modules/mojo/mojo.buildv1.1.07/emscripten_debug/mojo.a” “/Applications/Monkey2-v1.1.07/modules/std/std.buildv1.1.07/emscripten_debug/std.a” “/Applications/Monkey2-v1.1.07/modules/stb-vorbis/stb-vorbis.buildv1.1.07/emscripten_debug/stb-vorbis.a” “/Applications/Monkey2-v1.1.07/modules/stb-image-write/stb-image-write.buildv1.1.07/emscripten_debug/stb-image-write.a” “/Applications/Monkey2-v1.1.07/modules/stb-image/stb-image.buildv1.1.07/emscripten_debug/stb-image.a” “/Applications/Monkey2-v1.1.07/modules/miniz/miniz.buildv1.1.07/emscripten_debug/miniz.a” “/Applications/Monkey2-v1.1.07/modules/sdl2/sdl2.buildv1.1.07/emscripten_debug/sdl2.a” “/Applications/Monkey2-v1.1.07/modules/jni/jni.buildv1.1.07/emscripten_debug/jni.a” “/Applications/Monkey2-v1.1.07/modules/openal/openal.buildv1.1.07/emscripten_debug/openal.a” “/Applications/Monkey2-v1.1.07/modules/gles20/gles20.buildv1.1.07/emscripten_debug/gles20.a” “/Applications/Monkey2-v1.1.07/modules/libc/libc.buildv1.1.07/emscripten_debug/libc.a” “/Applications/Monkey2-v1.1.07/modules/freetype/freetype.buildv1.1.07/emscripten_debug/freetype.a” “/Applications/Monkey2-v1.1.07/modules/emscripten/emscripten.buildv1.1.07/emscripten_debug/emscripten.a” “/Applications/Monkey2-v1.1.07/modules/monkey/monkey.buildv1.1.07/emscripten_debug/monkey.a”
Traceback (most recent call last):
File “/Users/jesse/emsdk/emscripten/1.37.9/em++”, line 16, in <module>
emcc.run()
File “/Users/jesse/emsdk/emscripten/1.37.9/emcc.py”, line 1033, in run
exec ‘shared.Settings.’ + key + ‘ = ‘ + value in globals(), locals()
File “<string>”, line 1, in <module>
NameError: name ‘allow’ is not defined***** Fatal mx2cc error *****
Internal mx2cc build error
-
AuthorPosts
You must be logged in to reply to this topic.