Skip to content

Commit

Permalink
fix(httplib): bump httplib version to 14, use epoll (#47)
Browse files Browse the repository at this point in the history
---------

Co-authored-by: Bryan Huhta <[email protected]>
  • Loading branch information
korniltsev and bryanhuhta authored Nov 9, 2023
1 parent a6714ed commit 0471ec1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Pyroscope/Pyroscope/Pyroscope.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageVersion>0.8.12</PackageVersion>
<AssemblyVersion>0.8.12</AssemblyVersion>
<FileVersion>0.8.12</FileVersion>
<PackageVersion>0.8.14</PackageVersion>
<AssemblyVersion>0.8.14</AssemblyVersion>
<FileVersion>0.8.14</FileVersion>
<LangVersion>10</LangVersion>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,9 @@ target_link_libraries(${PROFILER_STATIC_LIB_NAME}
-ldl
)


target_include_directories(${PROFILER_STATIC_LIB_NAME} PUBLIC ${PROJECT_SOURCE_DIR}/../../../../profiler/third_party/cpp-httplib)
target_compile_options(${PROFILER_STATIC_LIB_NAME} PUBLIC -isystem${PROJECT_SOURCE_DIR}/../../../../profiler/third_party/boringssl/include)
target_compile_definitions(${PROFILER_STATIC_LIB_NAME} PUBLIC -DCPPHTTPLIB_OPENSSL_SUPPORT)
target_compile_definitions(${PROFILER_STATIC_LIB_NAME} PUBLIC -DCPPHTTPLIB_OPENSSL_SUPPORT -DCPPHTTPLIB_USE_POLL)

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include "httplib.h"
#include "url.hpp"

#define PYROSCOPE_SPY_VERSION "0.8.12"
#define PYROSCOPE_SPY_VERSION "0.8.14"

class PyroscopePprofSink : public PProfExportSink
{
Expand Down

0 comments on commit 0471ec1

Please sign in to comment.