Skip to content
Merged
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
1 change: 1 addition & 0 deletions bazel/target_recipes.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# ci/build_container/build_recipes.
TARGET_RECIPES = {
"ares": "cares",
"backward": "backward",
# TODO(htuch): Remove when cmake goes.
"cotire": "cotire",
"event": "libevent",
Expand Down
7 changes: 7 additions & 0 deletions ci/build_container/build_recipes/backward.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
set -e

git clone https://github.com/bombela/backward-cpp.git
cd backward-cpp
# v1.3 release
git reset --hard cd1c4bd9e48afe812a0e996d335298c455afcd92
cp backward.hpp $THIRDPARTY_BUILD/include
6 changes: 6 additions & 0 deletions ci/prebuilt/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ cc_library(
includes = ["thirdparty_build/include"],
)

cc_library(
name = "backward",
hdrs = ["thirdparty_build/include/backward.hpp"],
includes = ["thirdparty_build/include"],
)

cc_library(
name = "crypto",
srcs = ["thirdparty_build/lib/libcrypto.a"],
Expand Down
1 change: 1 addition & 0 deletions docs/install/requirements.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Envoy has the following requirements:
* `lightstep-tracer-cpp <https://github.com/lightstep/lightstep-tracer-cpp/>`_ (last tested with 0.36)
* `rapidjson <https://github.com/miloyip/rapidjson/>`_ (last tested with 1.1.0)
* `c-ares <https://github.com/c-ares/c-ares>`_ (last tested with 1.12.0)
* `backward <https://github.com/bombela/backward-cpp>`_ (last tested with 1.3)

In order to compile and run the tests the following is required:

Expand Down