Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(236)

Side by Side Diff: c2wasm-exe.sh

Issue 1876413002: Subzero. WASM. Additional progress. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Code review feedback and merging with master Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « README-wasm.md ('k') | fetch-torture-tests.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/bash
2
3 # TODO (eholk): This script is a hack for debugging and development
4 # that should be removed.
5
6 ./wasm-install/bin/emscripten/emcc "$1" -s BINARYEN=1 \
7 -s 'BINARYEN_METHOD="native-wasm"' -O2 && \
8 ./wasm-install/bin/sexpr-wasm a.out.wast -o a.out.wasm && \
9 ./pnacl-sz a.out.wasm -o a.out.o -filetype=obj -O2 && \
10 clang -m32 a.out.o runtime/wasm-runtime.c -g
OLDNEW
« no previous file with comments | « README-wasm.md ('k') | fetch-torture-tests.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698