Skip to content

Commit d7a59f4

Browse files
profiling: use echion with memcpy
1 parent 5e343c3 commit d7a59f4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ddtrace/internal/datadog/profiling/stack_v2/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ endif()
4141

4242
# Add echion
4343
set(ECHION_COMMIT
44-
"39d74a33a3f3abe810e6a29132721871e3127472" # https://github.com/P403n1x87/echion/commit/39d74a33a3f3abe810e6a29132721871e3127472
44+
"0726288559c00c9ceb3f02fcf425de1a669d45d6" # https://github.com/kowalskithomas/echion/commit/0726288559c00c9ceb3f02fcf425de1a669d45d6
4545
CACHE STRING "Commit hash of echion to use")
4646
FetchContent_Declare(
4747
echion
48-
GIT_REPOSITORY "https://github.com/P403n1x87/echion.git"
48+
GIT_REPOSITORY "https://github.com/kowalskithomas/echion.git"
4949
GIT_TAG ${ECHION_COMMIT})
5050
FetchContent_GetProperties(echion)
5151

@@ -54,7 +54,7 @@ if(NOT echion_POPULATED)
5454
endif()
5555

5656
# Specify the target C-extension that we want to build
57-
add_library(${EXTENSION_NAME} SHARED ${echion_SOURCE_DIR}/echion/frame.cc ${echion_SOURCE_DIR}/echion/render.cc
57+
add_library(${EXTENSION_NAME} SHARED ${echion_SOURCE_DIR}/echion/frame.cc ${echion_SOURCE_DIR}/echion/render.cc ${echion_SOURCE_DIR}/echion/danger.cc
5858
src/sampler.cpp src/stack_renderer.cpp src/stack_v2.cpp src/thread_span_links.cpp)
5959

6060
# Add common config

0 commit comments

Comments
 (0)