Skip to content

Commit

Permalink
Update core/CMakeLists.txt to include coredump.c only for X64.
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankyluk committed Nov 18, 2024
1 parent 610c2a7 commit bd4dc21
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,9 @@ if (UNIX)
set(OS_SRCS ${OS_SRCS} unix/loader_android.c)
else ()
set(OS_SRCS ${OS_SRCS} unix/loader_linux.c)
set(OS_SRCS ${OS_SRCS} unix/coredump.c)
if (X64)
set(OS_SRCS ${OS_SRCS} unix/coredump.c)
endif ()
endif ()
set(OS_SRCS ${OS_SRCS} unix/memquery_linux.c)
set(OS_SRCS ${OS_SRCS} unix/memquery.c)
Expand Down

0 comments on commit bd4dc21

Please sign in to comment.