Skip to content

Commit 0471ec1

Browse files
fix(httplib): bump httplib version to 14, use epoll (#47)
--------- Co-authored-by: Bryan Huhta <[email protected]>
1 parent a6714ed commit 0471ec1

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

Pyroscope/Pyroscope/Pyroscope.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
8-
<PackageVersion>0.8.12</PackageVersion>
9-
<AssemblyVersion>0.8.12</AssemblyVersion>
10-
<FileVersion>0.8.12</FileVersion>
8+
<PackageVersion>0.8.14</PackageVersion>
9+
<AssemblyVersion>0.8.14</AssemblyVersion>
10+
<FileVersion>0.8.14</FileVersion>
1111
<LangVersion>10</LangVersion>
1212
</PropertyGroup>
1313

profiler/src/ProfilerEngine/Datadog.Profiler.Native.Linux/CMakeLists.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,9 @@ target_link_libraries(${PROFILER_STATIC_LIB_NAME}
128128
-ldl
129129
)
130130

131-
132131
target_include_directories(${PROFILER_STATIC_LIB_NAME} PUBLIC ${PROJECT_SOURCE_DIR}/../../../../profiler/third_party/cpp-httplib)
133132
target_compile_options(${PROFILER_STATIC_LIB_NAME} PUBLIC -isystem${PROJECT_SOURCE_DIR}/../../../../profiler/third_party/boringssl/include)
134-
target_compile_definitions(${PROFILER_STATIC_LIB_NAME} PUBLIC -DCPPHTTPLIB_OPENSSL_SUPPORT)
133+
target_compile_definitions(${PROFILER_STATIC_LIB_NAME} PUBLIC -DCPPHTTPLIB_OPENSSL_SUPPORT -DCPPHTTPLIB_USE_POLL)
135134

136135
add_dependencies(${PROFILER_STATIC_LIB_NAME} fmt-lib libdatadog-lib libunwind-lib coreclr spdlog-headers PPDB)
137136

profiler/src/ProfilerEngine/Datadog.Profiler.Native/PyroscopePprofSink.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include "httplib.h"
1111
#include "url.hpp"
1212

13-
#define PYROSCOPE_SPY_VERSION "0.8.12"
13+
#define PYROSCOPE_SPY_VERSION "0.8.14"
1414

1515
class PyroscopePprofSink : public PProfExportSink
1616
{

0 commit comments

Comments
 (0)