Skip to content

Commit 6f0849a

Browse files
committed
fix rust-wasm.sh
1 parent 646bb84 commit 6f0849a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust-wasm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if [ ! -f "${INPUT}" ]; then
1919
exit 2
2020
fi
2121

22-
rustc -O --crate-type=lib --emit=llvm-bc -C opt-level=3 "${INPUT}" && \
22+
rustc -O --crate-type=lib --emit=llvm-bc "${INPUT}" && \
2323
llc -march=wasm32 "${BASENAME}.bc" && \
2424
s2wasm -o "${BASENAME}.wast" "${BASENAME}.s" && \
2525
wasm-as "${BASENAME}.wast"

0 commit comments

Comments
 (0)