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

Side by Side Diff: c2wasm-exe.sh

Issue 1918213003: Subzero, Wasm: Dynamically reallocate read buffer. Runtime improvements. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Code review changes Created 4 years, 7 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 | « no previous file | pydir/wasm-run-torture-tests.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 2
3 # TODO (eholk): This script is a hack for debugging and development 3 # TODO (eholk): This script is a hack for debugging and development
4 # that should be removed. 4 # that should be removed.
5 5
6 ./wasm-install/bin/emscripten/emcc "$1" -s BINARYEN=1 \ 6 ./wasm-install/bin/emscripten/emcc "$1" -s BINARYEN=1 \
7 -s 'BINARYEN_METHOD="native-wasm"' \ 7 -s 'BINARYEN_METHOD="native-wasm"' \
8 --em-config wasm-install/emscripten_config_vanilla && \ 8 --em-config wasm-install/emscripten_config_vanilla -O2 && \
9 ./wasm-install/bin/sexpr-wasm a.out.wast -o a.out.wasm && \ 9 ./wasm-install/bin/sexpr-wasm a.out.wast -o a.out.wasm && \
10 ./pnacl-sz a.out.wasm -o a.out.o -filetype=obj -O2 && \ 10 ./pnacl-sz a.out.wasm -o a.out.o -filetype=obj -O2 && \
11 clang -m32 a.out.o ./runtime/szrt.c \ 11 clang -m32 a.out.o ./runtime/szrt.c \
12 ./runtime/wasm-runtime.cpp -lm -g 12 ./runtime/wasm-runtime.cpp -lm -g -lstdc++
OLDNEW
« no previous file with comments | « no previous file | pydir/wasm-run-torture-tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698