Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ddtrace/internal/datadog/profiling/stack_v2/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ endif()

# Add echion
set(ECHION_COMMIT
"39d74a33a3f3abe810e6a29132721871e3127472" # https://github.com/P403n1x87/echion/commit/39d74a33a3f3abe810e6a29132721871e3127472
"a9c9e691b98162db64f9234640f923d608494580" # https://github.com/kowalskithomas/echion/commit/a9c9e691b98162db64f9234640f923d608494580
CACHE STRING "Commit hash of echion to use")
FetchContent_Declare(
echion
GIT_REPOSITORY "https://github.com/P403n1x87/echion.git"
GIT_REPOSITORY "https://github.com/kowalskithomas/echion.git"
GIT_TAG ${ECHION_COMMIT})
FetchContent_GetProperties(echion)

Expand All @@ -54,7 +54,7 @@ if(NOT echion_POPULATED)
endif()

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

# Add common config
Expand Down
Loading