You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't know if you're still working on this at all, or if you've touched the code recently enough to help me, but I tried getting Emscripten to work and the javascript it produced kept producing errors for me, so I found this to try to get something that would compile for the browser.
I'm on Windows 11, my wajic folder looks like this:
I tried running this command: 'node wajicup.js Samples/Basic.c Basic.html'
and I get this error:
That error, I figured out is because '-fvisibility=hidden' is mistyped as '-fvisibility hidden'
I tried going into the wajic.mk file and I thought I fixed that error, but it was still happening. After that, I decided to just try the manual build:
'clang -I. -Os -target wasm32 -nostartfiles -nodefaultlibs -nostdinc -nostdinc++ -Wno-unused-command-line-argument -DNDEBUG -D__WAJIC__ -fvisibility=hidden -fno-rtti -fno-exceptions -fno-threadsafe-statics -Xlinker -strip-all -Xlinker -gc-sections -Xlinker -no-entry -Xlinker -allow-undefined -Xlinker -export=__wasm_call_ctors -Xlinker -export=main samples/Basic.c -o Basic.wasm'
From that, I get this error:
I have no idea what's wrong on my end or how to fix it. If you could at least get back to me to let me know I need to find another Emscripten alternative, that would be much appreciated.
Thanks for your time.
The text was updated successfully, but these errors were encountered:
I just ran into the same problem. For some reason these "\x11" escape sequences are no longer allowed here.
I could not find a better solution than to insert the control character directly.
I added a #define DC1 "�" and replaced all "\x11" with DC1.
Here is my patched wajic.h.
I don't know if you're still working on this at all, or if you've touched the code recently enough to help me, but I tried getting Emscripten to work and the javascript it produced kept producing errors for me, so I found this to try to get something that would compile for the browser.
I'm on Windows 11, my wajic folder looks like this:

I tried running this command: 'node wajicup.js Samples/Basic.c Basic.html'

and I get this error:
That error, I figured out is because '-fvisibility=hidden' is mistyped as '-fvisibility hidden'

I tried going into the wajic.mk file and I thought I fixed that error, but it was still happening. After that, I decided to just try the manual build:
'clang -I. -Os -target wasm32 -nostartfiles -nodefaultlibs -nostdinc -nostdinc++ -Wno-unused-command-line-argument -DNDEBUG -D__WAJIC__ -fvisibility=hidden -fno-rtti -fno-exceptions -fno-threadsafe-statics -Xlinker -strip-all -Xlinker -gc-sections -Xlinker -no-entry -Xlinker -allow-undefined -Xlinker -export=__wasm_call_ctors -Xlinker -export=main samples/Basic.c -o Basic.wasm'
From that, I get this error:
I have no idea what's wrong on my end or how to fix it. If you could at least get back to me to let me know I need to find another Emscripten alternative, that would be much appreciated.
Thanks for your time.
The text was updated successfully, but these errors were encountered: