Skip to content
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
05e315e
Merge pull request #360 from bytecodealliance/main
wenyongh Oct 13, 2021
d4f2649
Apply clang-format for core/shared and product-mini files
wenyongh Oct 13, 2021
8c3ccef
Merge pull request #361 from bytecodealliance/main
wenyongh Oct 14, 2021
084fef1
Merge pull request #362 from bytecodealliance/main
wenyongh Oct 14, 2021
49fbb9c
Merge pull request #363 from bytecodealliance/main
wenyongh Oct 15, 2021
f0cd7ea
Fix app heap corrupted unchecked issue
wenyongh Oct 15, 2021
a4c8883
Change API to wasm_runtime_show_app_heap_corrupted_prompt()
wenyongh Oct 15, 2021
0f25f37
Merge pull request #364 from bytecodealliance/main
wenyongh Oct 15, 2021
cb984fe
Merge pull request #365 from bytecodealliance/main
wenyongh Oct 19, 2021
ca8173e
Merge pull request #379 from bytecodealliance/main
wenyongh Nov 8, 2021
7fb4fce
Merge pull request #380 from bytecodealliance/main
wenyongh Nov 8, 2021
6b1f3e5
Merge pull request #381 from bytecodealliance/main
wenyongh Nov 9, 2021
be0efab
Merge pull request #384 from bytecodealliance/main
wenyongh Nov 10, 2021
aa07130
Merge pull request #389 from bytecodealliance/main
wenyongh Nov 12, 2021
375286a
Merge pull request #390 from bytecodealliance/main
wenyongh Nov 14, 2021
0fd886b
Merge pull request #391 from bytecodealliance/main
wenyongh Nov 15, 2021
461b790
Merge pull request #393 from bytecodealliance/main
wenyongh Nov 15, 2021
a3eef81
Merge pull request #395 from bytecodealliance/main
wenyongh Nov 18, 2021
f1f7997
Fix windows build issue
wenyongh Nov 22, 2021
fcbef49
Merge pull request #396 from bytecodealliance/main
wenyongh Nov 23, 2021
f109144
Fix sample gui build error
wenyongh Nov 23, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion samples/gui/wasm-apps/build_apps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ cd ${APPS_ROOT}/increase

rm -rf build
mkdir build && cd build
cmake .. -DCMAKE_TOOLCHAIN_FILE=${WAMR_DIR}/wamr-sdk/out/gui/app-sdk/wamr_toolchain.cmake
cmake .. -DCMAKE_TOOLCHAIN_FILE=${WAMR_DIR}/wamr-sdk/out/gui/app-sdk/wamr_toolchain.cmake \
-DWASI_SDK_DIR=/opt/wasi-sdk
make
[ $? -eq 0 ] || exit $?
mv ui_increase.wasm ${OUT_DIR}/
Expand Down