Skip to content

Commit d1af0c8

Browse files
perf(profiling): use echion with memcpy
1 parent 13e4d43 commit d1af0c8

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
@@ -49,11 +49,11 @@ endif()
4949

5050
# Add echion
5151
set(ECHION_COMMIT
52-
"1b02a8fcccaa4b748b494f3c3177b78be6503967" # https://github.com/P403n1x87/echion/commit/1b02a8fcccaa4b748b494f3c3177b78be6503967
52+
"cefe8d44252b0b04b6b7c30462f794a0f0aa6c7f" # https://github.com/kowalskithomas/echion/commit/cefe8d44252b0b04b6b7c30462f794a0f0aa6c7f
5353
CACHE STRING "Commit hash of echion to use")
5454
FetchContent_Declare(
5555
echion
56-
GIT_REPOSITORY "https://github.com/P403n1x87/echion.git"
56+
GIT_REPOSITORY "https://github.com/kowalskithomas/echion.git"
5757
GIT_TAG ${ECHION_COMMIT})
5858
FetchContent_GetProperties(echion)
5959

@@ -62,7 +62,7 @@ if(NOT echion_POPULATED)
6262
endif()
6363

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

6868
# Add common config

0 commit comments

Comments
 (0)