We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I just built the project using ninja, and then when I run check.py script, I keep getting this error:
./check.py [ checking --version ... ] Parsed CHANGELOG.md version: 119 .. /Users/vyomsharma/binaryen/bin/wasm-as --version .. /Users/vyomsharma/binaryen/bin/wasm-ctor-eval --version .. /Users/vyomsharma/binaryen/bin/wasm-dis --version .. /Users/vyomsharma/binaryen/bin/wasm-emscripten-finalize --version .. /Users/vyomsharma/binaryen/bin/wasm-fuzz-lattices --version .. /Users/vyomsharma/binaryen/bin/wasm-fuzz-types --version .. /Users/vyomsharma/binaryen/bin/wasm-merge --version .. /Users/vyomsharma/binaryen/bin/wasm-metadce --version .. /Users/vyomsharma/binaryen/bin/wasm-opt --version .. /Users/vyomsharma/binaryen/bin/wasm-reduce --version .. /Users/vyomsharma/binaryen/bin/wasm-shell --version .. /Users/vyomsharma/binaryen/bin/wasm-split --version .. /Users/vyomsharma/binaryen/bin/wasm2js --version [ checking wasm-opt -o notation... ] executing: /Users/vyomsharma/binaryen/bin/wasm-opt /Users/vyomsharma/binaryen/test/hello_world.wat -o a.wat -S -q executing: /Users/vyomsharma/binaryen/bin/wasm-opt /Users/vyomsharma/binaryen/test/hello_world.wat -o a.wat -S -q --no-validation [ checking wasm-opt binary reading/writing... ] executing: /Users/vyomsharma/binaryen/bin/wasm-opt a.wat -o a.wasm -q executing: /Users/vyomsharma/binaryen/bin/wasm-opt a.wasm -o b.wast -S -q [ checking wasm-opt passes... ] .. O.wasm executing: /Users/vyomsharma/binaryen/bin/wasm-opt -O split.wast -q --print Traceback (most recent call last): File "/Users/vyomsharma/binaryen/./check.py", line 408, in <module> sys.exit(main()) ^^^^^^ File "/Users/vyomsharma/binaryen/./check.py", line 391, in main TEST_SUITES[test]() File "/Users/vyomsharma/binaryen/scripts/test/wasm_opt.py", line 69, in test_wasm_opt curr = support.run_command(cmd) ^^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/vyomsharma/binaryen/scripts/test/support.py", line 193, in run_command raise Exception(('run_command failed (%s)' % code, out + str(err or ''))) Exception: ('run_command failed (-10)', '')
Things I noticed:
The text was updated successfully, but these errors were encountered:
split.wast should be in out/test/split.wast. Maybe there is a permissions issue with that folder?
split.wast
out/test/split.wast
Does bin/wasm-opt -O out/test/split.wast -q --print work? (that adds the full path)
bin/wasm-opt -O out/test/split.wast -q --print
Which OS is this on?
Sorry, something went wrong.
doing bin/wasm-opt -O out/test/split.wast -q --print gives me
zsh: bus error bin/wasm-opt -O out/test/split.wast -q --print
Running this ons MacOS (M2)
Hmm, sorry, I'm not sure what "bus error" is on MacOS, but I think that is the problem.
After updating to MacOS Sequoia, the problem resolved itself somehow.
No branches or pull requests
I just built the project using ninja, and then when I run check.py script, I keep getting this error:
Things I noticed:
The text was updated successfully, but these errors were encountered: