mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-06 15:05:19 +00:00
Update release notes and fix issues reported by Coverity (#1813)
This commit is contained in:
parent
fe210f02f2
commit
7db49db777
|
@ -32,6 +32,8 @@ Fix sample ref-types/wasm-c-api build error with wat2wasm low version
|
|||
Fix zephyr sample build errors
|
||||
Fix source debugger error handling: continue executing when detached
|
||||
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
|
||||
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
|
||||
Install patched LLDB on vscode extension activation
|
||||
Add ARM aeabi memcpy/memmove/memset symbols for AOT bulk memory ops
|
||||
Enable wasm cache loading in wasm-c-api
|
||||
|
||||
### Others
|
||||
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);
|
||||
break;
|
||||
default:
|
||||
LOG_ERROR("Unsupported breakpoint type %d", type);
|
||||
LOG_ERROR("Unsupported breakpoint type %zu", type);
|
||||
write_packet(server, "");
|
||||
break;
|
||||
}
|
||||
|
@ -766,7 +766,7 @@ handle_remove_break(WASMGDBServer *server, char *payload)
|
|||
handle_watchpoint_read_remove(server, addr, length);
|
||||
break;
|
||||
default:
|
||||
LOG_ERROR("Unsupported breakpoint type %d", type);
|
||||
LOG_ERROR("Unsupported breakpoint type %zu", type);
|
||||
write_packet(server, "");
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user