mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-06 15:05:19 +00:00
23 lines
623 B
Bash
Executable File
23 lines
623 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
#
|
|
|
|
rm -fr spec
|
|
# check spec test cases for GC
|
|
git clone -b main --single-branch https://github.com/WebAssembly/gc.git spec
|
|
pushd spec
|
|
|
|
git restore . && git clean -ffd .
|
|
# Reset to commit: "[test] Unify the error message."
|
|
git reset --hard 0caaadc65b5e1910512d8ae228502edcf9d60390
|
|
git apply ../../../wamr-test-suites/spec-test-script/gc_ignore_cases.patch
|
|
|
|
# Set OCaml compiler environment
|
|
eval $(opam config env)
|
|
|
|
echo "compile the reference intepreter"
|
|
pushd interpreter
|
|
make
|
|
popd |