compile.sh 333 B

1234567891011
  1. #!/bin/sh
  2. # Copyright (C) 2019 Intel Corporation. All rights reserved.
  3. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. /opt/wasi-sdk/bin/clang \
  5. -O0 -z stack-size=4096 -Wl,--initial-memory=65536 \
  6. -Wl,--strip-all,--no-entry -nostdlib \
  7. -Wl,--export=sum\
  8. -Wl,--allow-undefined \
  9. -o sum.wasm sum.c