Skip to content

Commit c7cf5ef

Browse files
authored
Merge branch 'bytecodealliance:main' into main
2 parents 7613a79 + 082cfa1 commit c7cf5ef

File tree

6 files changed

+13
-15
lines changed

6 files changed

+13
-15
lines changed

.github/workflows/compilation_on_nuttx.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,14 @@ jobs:
8585
- name: Checkout NuttX
8686
uses: actions/checkout@v4
8787
with:
88-
repository: apache/incubator-nuttx
88+
repository: apache/nuttx
8989
ref: releases/12.4
9090
path: nuttx
9191

9292
- name: Checkout NuttX Apps
9393
uses: actions/checkout@v4
9494
with:
95-
repository: apache/incubator-nuttx-apps
95+
repository: apache/nuttx-apps
9696
ref: releases/12.4
9797
path: apps
9898

.github/workflows/spec_test_on_nuttx.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -112,14 +112,14 @@ jobs:
112112
- name: Checkout NuttX
113113
uses: actions/checkout@v4
114114
with:
115-
repository: apache/incubator-nuttx
115+
repository: apache/nuttx
116116
ref: releases/12.4
117117
path: nuttx
118118

119119
- name: Checkout NuttX Apps
120120
uses: actions/checkout@v4
121121
with:
122-
repository: apache/incubator-nuttx-apps
122+
repository: apache/nuttx-apps
123123
ref: releases/12.4
124124
path: apps
125125

ATTRIBUTIONS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The WAMR fast interpreter is a clean room development. We would acknowledge the
3535
| uvwasi | unspecified | v0.0.12 | https://github.com/nodejs/uvwasi | |
3636
| asmjit | unspecified | unspecified | https://github.com/asmjit/asmjit | |
3737
| zydis | unspecified | e14a07895136182a5b53e181eec3b1c6e0b434de | https://github.com/zyantific/zydis | |
38-
| NuttX ELF headers | 72313301e23f9c2de969fb64b9a0f67bb4c284df | 10.3.0 | https://github.com/apache/incubator-nuttx | |
38+
| NuttX ELF headers | 72313301e23f9c2de969fb64b9a0f67bb4c284df | 10.3.0 | https://github.com/apache/nuttx | |
3939
| Dhrystone | 2.1 | 2.1 | https://fossies.org/linux/privat/old/ | |
4040

4141
## Licenses

core/iwasm/common/gc/gc_type.c

-6
Original file line numberDiff line numberDiff line change
@@ -846,12 +846,6 @@ wasm_is_reftype_supers_of_func(uint8 type)
846846
return (type == REF_TYPE_FUNCREF) ? true : false;
847847
}
848848

849-
inline static bool
850-
wasm_is_reftype_supers_of_extern(uint8 type)
851-
{
852-
return (type == REF_TYPE_EXTERNREF) ? true : false;
853-
}
854-
855849
#if WASM_ENABLE_STRINGREF != 0
856850
inline static bool
857851
wasm_is_reftype_supers_of_string(uint8 type)

core/iwasm/common/wasm_runtime_common.c

+6-4
Original file line numberDiff line numberDiff line change
@@ -384,12 +384,14 @@ runtime_exception_handler(EXCEPTION_POINTERS *exce_info)
384384
return ret;
385385
}
386386
#endif
387+
else {
388+
LOG_WARNING("Unhandled exception thrown: exception code: 0x%lx, "
389+
"exception address: %p, exception information: %p\n",
390+
ExceptionRecord->ExceptionCode,
391+
ExceptionRecord->ExceptionAddress, sig_addr);
392+
}
387393
}
388394

389-
LOG_ERROR("Unhandled exception thrown: exception code: 0x%lx, "
390-
"exception address: %p, exception information: %p\n",
391-
ExceptionRecord->ExceptionCode, ExceptionRecord->ExceptionAddress,
392-
sig_addr);
393395
return EXCEPTION_CONTINUE_SEARCH;
394396
}
395397
#endif /* end of BH_PLATFORM_WINDOWS */

product-mini/platforms/android/CMakeLists.txt

+2
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,8 @@ set (WAMR_ROOT_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../../..)
105105

106106
include (${WAMR_ROOT_DIR}/build-scripts/runtime_lib.cmake)
107107

108+
add_library(vmlib ${WAMR_RUNTIME_LIB_SOURCE})
109+
108110
set (CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--gc-sections -pie -fPIE")
109111

110112
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wformat -Wformat-security")

0 commit comments

Comments
 (0)