Fix several issues related to AOT debug (#1492)

This commit is contained in:
YAMAMOTO Takashi
2022-09-16 13:06:46 +09:00
committed by GitHub
parent edaff3c6ec
commit 1eedde7c33
3 changed files with 4 additions and 4 deletions

View File

@ -60,7 +60,7 @@ Then you can use lldb commands to debug your applications. Please refer to [lldb
1. Build lldb (assume you have already built llvm)
``` bash
cd ${WAMR_ROOT}/core/deps/llvm/build
cmake . -DLLVM_ENABLE_PROJECTS="clang;lldb"
cmake ../llvm -DLLVM_ENABLE_PROJECTS="clang;lldb" -DLLDB_INCLUDE_TESTS=OFF
make -j $(nproc)
```