Skip to content

Commit

Permalink
chore: switch back to upstream wamr
Browse files Browse the repository at this point in the history
  • Loading branch information
G4Vi committed Oct 27, 2023
1 parent 594a039 commit 5e413b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[submodule "wasm-micro-runtime"]
path = wasm-micro-runtime
url = https://github.com/dylibso/wasm-micro-runtime
url = https://github.com/bytecodealliance/wasm-micro-runtime
[submodule "dockerfile-parser-rs"]
path = dockerfile-parser-rs
url = https://github.com/dylibso/dockerfile-parser-rs
2 changes: 1 addition & 1 deletion wasm-micro-runtime
Submodule wasm-micro-runtime updated 50 files
+8 −7 .github/workflows/compilation_on_android_ubuntu.yml
+1 −3 .github/workflows/compilation_on_macos.yml
+0 −3 .github/workflows/compilation_on_sgx.yml
+4 −8 .github/workflows/nightly_run.yml
+0 −23 CMakeLists.txt
+2 −0 README.md
+7 −1 core/iwasm/aot/aot_loader.c
+5 −0 core/iwasm/aot/arch/aot_reloc_aarch64.c
+1 −4 core/iwasm/common/wasm_application.c
+1 −2 core/iwasm/common/wasm_native.c
+84 −10 core/iwasm/common/wasm_runtime_common.c
+9 −2 core/iwasm/compilation/aot_emit_control.c
+3 −9 core/iwasm/compilation/aot_emit_numberic.c
+15 −10 core/iwasm/compilation/aot_llvm_extra.cpp
+49 −0 core/iwasm/fast-jit/fe/jit_emit_conversion.c
+0 −74 core/iwasm/fast-jit/jit_frontend.c
+1 −0 core/iwasm/include/wasm_export.h
+6 −4 core/iwasm/interpreter/wasm_interp_classic.c
+21 −6 core/iwasm/interpreter/wasm_interp_fast.c
+36 −32 core/iwasm/interpreter/wasm_loader.c
+35 −32 core/iwasm/interpreter/wasm_mini_loader.c
+4 −4 core/iwasm/libraries/libc-wasi/sandboxed-system-primitives/src/posix.c
+4 −0 core/shared/platform/alios/alios_platform.c
+4 −0 core/shared/platform/alios/alios_thread.c
+16 −0 core/shared/platform/common/posix/posix_memmap.c
+26 −8 core/shared/platform/common/posix/posix_thread.c
+4 −0 core/shared/platform/esp-idf/espidf_memmap.c
+4 −0 core/shared/platform/esp-idf/espidf_platform.c
+13 −0 core/shared/platform/include/platform_api_vmcore.h
+4 −0 core/shared/platform/linux-sgx/sgx_platform.c
+4 −0 core/shared/platform/linux-sgx/sgx_thread.c
+4 −0 core/shared/platform/nuttx/nuttx_platform.c
+4 −0 core/shared/platform/riot/riot_platform.c
+4 −0 core/shared/platform/riot/riot_thread.c
+8 −0 core/shared/platform/rt-thread/rtt_platform.c
+4 −0 core/shared/platform/windows/platform_init.c
+4 −0 core/shared/platform/windows/win_thread.c
+4 −0 core/shared/platform/zephyr/zephyr_platform.c
+4 −0 core/shared/platform/zephyr/zephyr_thread.c
+20 −4 product-mini/platforms/posix/main.c
+2 −2 product-mini/platforms/windows/main.c
+2 −0 tests/wamr-compiler/.gitignore
+3 −0 tests/wamr-compiler/README.md
+78 −0 tests/wamr-compiler/test_shift_negative_constants.wat
+2 −2 tests/wamr-test-suites/spec-test-script/all.py
+0 −0 tests/wamr-test-suites/spec-test-script/multi_module_aot_ignore_cases.patch
+11 −18 tests/wamr-test-suites/spec-test-script/runtest.py
+74 −47 tests/wamr-test-suites/test_wamr.sh
+22 −0 tests/wamr-test-suites/wamr-compiler-test-script/run_wamr_compiler_tests.sh
+2 −0 tests/wamr-test-suites/wasi-test-script/run_wasi_tests.sh

0 comments on commit 5e413b6

Please sign in to comment.