build_jit.sh 220 B

12345678910
  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. make -j ${nproc}
  8. cd ..