mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-05-08 20:56:13 +00:00
Update release notes and fix issues reported by Coverity (#1813)
This commit is contained in:
parent
d0c4c7036b
commit
fb8727ba68
|
@ -32,6 +32,8 @@ Fix sample ref-types/wasm-c-api build error with wat2wasm low version
|
||||||
Fix zephyr sample build errors
|
Fix zephyr sample build errors
|
||||||
Fix source debugger error handling: continue executing when detached
|
Fix source debugger error handling: continue executing when detached
|
||||||
Fix scenario where the timeout for atomic wait is set to negative number
|
Fix scenario where the timeout for atomic wait is set to negative number
|
||||||
|
Fix link cxx object file error when building wamrc for docker image
|
||||||
|
Fix XIP issue of handling 64-bit const in 32-bit target
|
||||||
|
|
||||||
### Enhancements
|
### Enhancements
|
||||||
Refactor the layout of interpreter and AOT module instance
|
Refactor the layout of interpreter and AOT module instance
|
||||||
|
@ -75,6 +77,7 @@ Fix warnings in the posix socket implementation
|
||||||
Update document for MacOS compilation
|
Update document for MacOS compilation
|
||||||
Install patched LLDB on vscode extension activation
|
Install patched LLDB on vscode extension activation
|
||||||
Add ARM aeabi memcpy/memmove/memset symbols for AOT bulk memory ops
|
Add ARM aeabi memcpy/memmove/memset symbols for AOT bulk memory ops
|
||||||
|
Enable wasm cache loading in wasm-c-api
|
||||||
|
|
||||||
### Others
|
### Others
|
||||||
Add CIs to release new version and publish binary files
|
Add CIs to release new version and publish binary files
|
||||||
|
|
|
@ -731,7 +731,7 @@ handle_add_break(WASMGDBServer *server, char *payload)
|
||||||
handle_watchpoint_read_add(server, addr, length);
|
handle_watchpoint_read_add(server, addr, length);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
LOG_ERROR("Unsupported breakpoint type %d", type);
|
LOG_ERROR("Unsupported breakpoint type %zu", type);
|
||||||
write_packet(server, "");
|
write_packet(server, "");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -766,7 +766,7 @@ handle_remove_break(WASMGDBServer *server, char *payload)
|
||||||
handle_watchpoint_read_remove(server, addr, length);
|
handle_watchpoint_read_remove(server, addr, length);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
LOG_ERROR("Unsupported breakpoint type %d", type);
|
LOG_ERROR("Unsupported breakpoint type %zu", type);
|
||||||
write_packet(server, "");
|
write_packet(server, "");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user