Skip to content

Commit

Permalink
[LLDB] wasm: Fix undefined symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
jawilk committed Oct 1, 2022
1 parent d825850 commit 5a88e03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lldb/source/Host/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ else()
endif()


elseif (CMAKE_SYSTEM_NAME MATCHES "Linux|Android")
elseif (CMAKE_SYSTEM_NAME MATCHES "Linux|Android|Emscripten")
add_host_subdirectory(linux
linux/AbstractSocket.cpp
linux/Host.cpp
Expand Down
2 changes: 1 addition & 1 deletion lldb/source/Host/common/Host.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ FileSpec Host::GetModuleFileSpecForHostAddress(const void *host_addr) {

#endif

#if !defined(__linux__)
#if !defined(__linux__) && !defined(__EMSCRIPTEN__)
bool Host::FindProcessThreads(const lldb::pid_t pid, TidMap &tids_to_attach) {
return false;
}
Expand Down

0 comments on commit 5a88e03

Please sign in to comment.