build_jit.sh 322 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. # By default LazyJIT is enabled, to disable it:
  7. # cmake .. -DWAMR_BUILD_JIT=1 -DWAMR_BUILD_LAZY_JIT=0
  8. cmake .. -DWAMR_BUILD_JIT=1
  9. make -j ${nproc}
  10. cd ..