build_jit.sh 247 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. rm -fr build && mkdir build
  5. cd build
  6. cmake .. -DWAMR_BUILD_JIT=1
  7. nproc=$(sysctl -n hw.ncpu)
  8. make -j ${nproc}
  9. cd ..