-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Aeneas.wasm hello-v3.v3 - no output #18
Comments
I think you want "-run" instead of "run". You'll get compile errors because the wave module and the system module both use pointers, which are not in the interpreter target used by "run". Aeneas should give an error here, but I am not sure why it does not. (note that the behavior is the same for Aeneas running on any target). |
Btw, you probably want to use -heap-size=500m when compiling Aeneas to wasm, as there is no default heap size set for this target, and you'll run out of memory very quickly, which will just look like a memory access out of bounds. |
it gets a little farther... |
worked when I compiled Aeneas.wasm with the bigger heap size. 👍 |
well, it produced a .wasm, but then when I ran it:
|
well, now it's working but it has exit code 32, but I don't know that I did anything differently..
@titzer 😄 |
The text was updated successfully, but these errors were encountered: