Skip to content

Commit fb8727b

Browse files
authored
Update release notes and fix issues reported by Coverity (bytecodealliance#1813)
1 parent d0c4c70 commit fb8727b

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

.github/workflows/build_docker_images.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
docker build -t wasm-debug-server:${{ inputs.ver_num }} .
2929
docker save -o wasm-debug-server.tar wasm-debug-server:${{ inputs.ver_num }}
3030
working-directory: test-tools/wamr-ide/WASM-Debug-Server/Docker
31-
31+
3232
- name: compress the tar file
3333
run: |
3434
tar czf wasm-debug-server-${{ inputs.ver_num }}.tar.gz wasm-debug-server.tar
@@ -86,4 +86,4 @@ jobs:
8686
asset_path: test-tools/wamr-ide/WASM-Toolchain/Docker/wasm-toolchain-${{ inputs.ver_num }}.zip
8787
asset_name: wasm-toolchain-${{ inputs.ver_num }}.zip
8888
asset_content_type: application/zip
89-
89+

RELEASE_NOTES.md

+3
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ Fix sample ref-types/wasm-c-api build error with wat2wasm low version
3232
Fix zephyr sample build errors
3333
Fix source debugger error handling: continue executing when detached
3434
Fix scenario where the timeout for atomic wait is set to negative number
35+
Fix link cxx object file error when building wamrc for docker image
36+
Fix XIP issue of handling 64-bit const in 32-bit target
3537

3638
### Enhancements
3739
Refactor the layout of interpreter and AOT module instance
@@ -75,6 +77,7 @@ Fix warnings in the posix socket implementation
7577
Update document for MacOS compilation
7678
Install patched LLDB on vscode extension activation
7779
Add ARM aeabi memcpy/memmove/memset symbols for AOT bulk memory ops
80+
Enable wasm cache loading in wasm-c-api
7881

7982
### Others
8083
Add CIs to release new version and publish binary files

core/iwasm/libraries/debug-engine/handler.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,7 @@ handle_add_break(WASMGDBServer *server, char *payload)
731731
handle_watchpoint_read_add(server, addr, length);
732732
break;
733733
default:
734-
LOG_ERROR("Unsupported breakpoint type %d", type);
734+
LOG_ERROR("Unsupported breakpoint type %zu", type);
735735
write_packet(server, "");
736736
break;
737737
}
@@ -766,7 +766,7 @@ handle_remove_break(WASMGDBServer *server, char *payload)
766766
handle_watchpoint_read_remove(server, addr, length);
767767
break;
768768
default:
769-
LOG_ERROR("Unsupported breakpoint type %d", type);
769+
LOG_ERROR("Unsupported breakpoint type %zu", type);
770770
write_packet(server, "");
771771
break;
772772
}

test-tools/wamr-ide/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ From now on, for each release, we have the same version tagged docker image save
4646
You could download the tar archive files for docker images from the release, and then load them using the following commands:
4747

4848
```sh
49-
# download the zip or tar.gz from release depending on your platform
49+
# download the zip or tar.gz from release depending on your platform
5050
# decompress and get the tar file
5151

5252
# on Linux/MacOS, you could use tar
@@ -55,14 +55,14 @@ tar xf wasm-debug-server-{version number}.tar.gz
5555
# or you could use unzip
5656
unzip wasm-toolchain-{version number}.zip
5757
unzip wasm-debug-server-{version number}.zip
58-
# load wasm-toolchain
58+
# load wasm-toolchain
5959
docker load --input wasm-toolchain.tar
6060
# load wasm-debug-server
6161
docker load --input wasm-debug-server.tar
6262

63-
# on Windows, you could use any unzip software you like
63+
# on Windows, you could use any unzip software you like
6464
# then loading docker images using powershell or git bash
65-
# load wasm-toolchain
65+
# load wasm-toolchain
6666
docker load --input ./wasm-toolchain.tar
6767
# load wasm-debug-server
6868
docker load --input ./wasm-debug-server.tar

0 commit comments

Comments
 (0)