Skip to content
Open
Show file tree
Hide file tree
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
13 changes: 4 additions & 9 deletions .scripts/linux/install-benchmarks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,10 @@ cd $REPO_DIR

# Check out the library.
git clone https://github.com/google/benchmark.git
# Benchmark requires Google Test as a dependency. Add the source tree as a subdirectory.
git clone https://github.com/google/googletest.git benchmark/googletest
cd benchmark/googletest
git checkout release-1.11.0
# Go to the library root directory
cd ..
# Make a build directory to place the build output.
cmake -E make_directory "build"
cd benchmark
git checkout v1.6.1

# Generate build system files with cmake.
cmake -E chdir "build" cmake -DCMAKE_BUILD_TYPE=Release ../
cmake -S . -B build -G Ninja -DBENCHMARK_ENABLE_GTEST_TESTS=OFF -DCMAKE_BUILD_TYPE=Release ../
# Install globally
sudo cmake --build "build" --config Release --target install
1 change: 0 additions & 1 deletion rlclientlib/utility/eventhub_http_authorization.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#define OPENSSL_API_COMPAT 0x0908
#include "error_callback_fn.h"
#include "err_constants.h"
#include "eventhub_http_authorization.h"
Expand Down
1 change: 1 addition & 0 deletions rlclientlib/utility/eventhub_http_authorization.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#pragma once

#define OPENSSL_API_COMPAT 0x0908
#include "api_status.h"
#include "configuration.h"
#include "internal_constants.h"
Expand Down