build_jit.sh 283 B

123456789101112
  1. #!/bin/sh
  2. # Copyright (C) 2019 Intel Corporation. All rights reserved.
  3. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. rm -fr build && mkdir build
  5. cd build
  6. # Build With LazyJIT
  7. # cmake .. -DWAMR_BUILD_JIT=1 -DWAMR_BUILD_LAZY_JIT=1
  8. cmake .. -DWAMR_BUILD_JIT=1
  9. make
  10. cd ..